Keeping my applications from closing after an hour

Sometimes I want to keep an application running, like an Internet radio station. But no matter how I try to disable shutdown and sleep functions, my Mac still shuts all applications after about 1 hour, and on my screen I find the login box against the wallpaper of a supernova (or whatever it is).
Here are my settings in "System Preferences:"
In the "Energy Saver" area, I have "Put the computer to sleep when it is inactive for" — Never
"Put the display(s) to sleep when the computer is inactive for" — Never
"Put the hard disk(s) to sleep when possible" — Not checked
In the Desktop & Screen Save area, I have "Start screen saver" — Never
Message was edited by: Walloon

Open the Security pane of System Preferences and set the computer not to logout after a period of inactivity.
(46896)

Similar Messages

  • Prevent Find and Replace from closing after clicking "Replace All"

    With the latest release of Dreamweaver CC (2014.1.1), there's been a minor change to the way Find and Replace works. I use Find and Replace a lot to clean up and delete code, so I might do many searches in a row to get things tidy. With the new version however, the Find and Replace window always closes after clicking "Replace All", which is very cumbersome. I need to open it up again, and it doesn't remember the text I entered to use as a replacement.
    Does anyone know if there's a way to prevent this window from closing after doing a Replace All? The previous version of Dreamweaver would keep it open and remember the text either until I changed it or I closed Find and Replace myself.
    Any pointers that would get me a little closer to the previous version's functionality would be appreciated!

    You need to do a find/change for each code individually, but it should be scriptable to take the .csv file and use it to load the find and change values. I'd try asking this over in the scripting forum: InDesign Scripting

  • Re: How do I keep an application from being started morethan once?

    Here are some quick ideas. None of them should be too hard to implement,
    although each has some drawbacks.
    1. Have a login server track who is logged on, and if there is already a
    logon for a given user or a given machine, then deny the application
    startup. The nice thing about this is that a user will not be able to have
    multiple logins even by going to another machine. Then again, this may not
    be so nice, and you also get a possible single point of failure on the
    login server for which you will have to prepare.
    2. Drop to the operating system, and get a list of processes for the client
    machine. If the name of one of them matches the name of application that
    is being run, then deny startup. This avoids a network hit, but requires
    some OS specific code. Also, a clever user could change the name of an
    executable to get around this. Note that a user could have another login
    on another machine.
    3. Write to a file on the local machine. You can hide the file in some
    suitable place, and can also scramble some information so that a user
    cannot get around having this file present by reading from the file at
    startup and then writing to it. Based on the state of your application,
    the file will have some scrambled information indicating if an instance of
    an application can be started. If you retain the write lock (i.e. do not
    close) the file for the duration of the application, you increase your
    security at the risk of a confused user if the application gets terminated
    without releasing the lock. Depending on the OS where the client will run,
    this could be an issue. If you like this option, perform some experiments
    first on all configurations of an example client machine to determine the
    behavior. Again, this only works to prevent an extra login on a single
    machine, not system wide.
    If you are not concerned about your users hacking around too much and don't
    care about a login on another machine, I would opt for some version of
    number 3. Otherwise, I would venture number 1.
    Regards
    CSB
    At 07:47 AM 2/18/98 -0500, Martin G Nystrom wrote:
    A user can launch an application, then launch it again. How do we make it so
    that the user can only run one instance of the application?
    Martin Nystrom
    Eli Lilly and Company
    ([email protected])
    Curtis Bragdon, Senior Consultant, Forte Software
    [email protected]
    Voice Mail: (510) 986-3807
    Paging: (888) 687-6723
    "I've seen dozens of triggering towns." - Richard Hugo

    Yet another quick and dirty solution is to use local ExternalConnections.
    This is a single instance per machine solution.
    Example is attached.
    (See attached file: TestOne.pex)
    [email protected] on 02/18/98 10:01:07 PM
    Please respond to [email protected]
    To: [email protected]
    cc: [email protected]
    Subject: Re: How do I keep an application from being started more than
    once?
    Martin,
    there are two ways to read your question
    (a) no more than one instance of an application per machine
    (b) no more than one instance of an application per "user"
    now if a user has only one machine, and your system has "userids" and you
    only want
    one active "session" per "user" then the distinction is irrelevant.
    However, many systems
    let people share logins, so a token based thing enforcing one login will be
    problematic.
    The downside of #1 approach suggested by Curtis happens when a machine gets
    hosed without "logging" the user off the security system, then they can't
    get in until their ticket expires or a sysadmin gets involved. Should be
    manageable, however. But this enforces one application
    instance per user, unless you check both for the presence of an active
    token for that user as well as the presence of a token tied to that
    particular node name. Otherwise there is nothing to prevent the same user
    from launching the app again and logging in as a different user. This is
    definitely the best approach of the bunch, and can be adapted for either
    (a) or (b).
    Suggestion # 2 won't work unless the application is built as a compiled
    client,
    since the process name will be 'ftexec' and not the "name" of the
    application. And it doesn't
    prevent a user from launching the app from a different machine (or people
    sharing logins). So again it depends on what you are trying to achieve.
    #3 also only prevents multiple instances per machine, not necessarily by
    user. Of course
    most people don't have multiple machines. The point is that you may be
    trying to
    prevent your users from sharing logins. In which case the file thing won't
    do it.
    Some other ideas:
    1. You could, however, enforce one application per machine using the
    installed partition agent's ExecutingPartition instrument name. As long as
    the user doesn't run the app in a different environment, you can have the
    app check at startup time if there is another
    ActivePartition running under the same InstalledPartition name.
    (ActivePartitions are child agents
    of InstalledPartitions).
    2. use the ObjectLocationManager and bind a simple object into the naming
    system using a naming scheme such as
    /MyApplication/MyNode or
    /MyApplication/MyUserId
    the presence of either one would indicate that another instance of that
    application is running on either that machine or that user. Of course
    these have to be cleaned out, and subject to similar downside as
    alternative #1. So you'd essentially be using the forte naming system as a
    distributed lock manager (ouch).
    3. Have the application remove the shortcut to launch it upon startup, and
    recreate it when it is finished, or move it to a hidden place. There it
    is - the worst idea I've ever come up with. Don't
    do this!
    Regards,
    John
    From: Curtis Bragdon <[email protected]>
    Date: Wed, 18 Feb 1998 16:36:58 -0500
    Subject: Re: How do I keep an application from being started more than
    once?
    Here are some quick ideas. None of them should be too hard to implement,
    although each has some drawbacks.
    1. Have a login server track who is logged on, and if there is already a
    logon for a given user or a given machine, then deny the application
    startup. The nice thing about this is that a user will not be able to have
    multiple logins even by going to another machine. Then again, this may not
    be so nice, and you also get a possible single point of failure on the
    login server for which you will have to prepare.
    2. Drop to the operating system, and get a list of processes for the client
    machine. If the name of one of them matches the name of application that
    is being run, then deny startup. This avoids a network hit, but requires
    some OS specific code. Also, a clever user could change the name of an
    executable to get around this. Note that a user could have another login
    on another machine.
    3. Write to a file on the local machine. You can hide the file in some
    suitable place, and can also scramble some information so that a user
    cannot get around having this file present by reading from the file at
    startup and then writing to it. Based on the state of your application,
    the file will have some scrambled information indicating if an instance of
    an application can be started. If you retain the write lock (i.e. do not
    close) the file for the duration of the application, you increase your
    security at the risk of a confused user if the application gets terminated
    without releasing the lock. Depending on the OS where the client will run,
    this could be an issue. If you like this option, perform some experiments
    first on all configurations of an example client machine to determine the
    behavior. Again, this only works to prevent an extra login on a single
    machine, not system wide.
    If you are not concerned about your users hacking around too much and don't
    care about a login on another machine, I would opt for some version of
    number 3. Otherwise, I would venture number 1.
    Regards
    CSB
    At 07:47 AM 2/18/98 -0500, Martin G Nystrom wrote:
    A user can launch an application, then launch it again. How do we make itso
    that the user can only run one instance of the application?
    Martin Nystrom
    Eli Lilly and Company
    ([email protected])
    Curtis Bragdon, Senior Consultant, Forte Software
    [email protected]
    Voice Mail: (510) 986-3807
    Paging: (888) 687-6723
    "I've seen dozens of triggering towns." - Richard Hugo
    John Jamison
    Vice President of Technology
    Sage IT Partners, Inc.
    415 392 7243 x 306
    [email protected]

  • TS4036 Trying to restore, I've tried a dozen networks and I keep getting a "lost connection" after an hour or two, EVERYTIME. Using Cox Wi-fi with a net gear 300 router. Any suggestions?

    Trying to restore, I've tried a dozen networks and I keep getting a "lost connection" after an hour or two, EVERYTIME. Using Cox Wi-fi with a netgear 300 router. Any suggestions?

    Thanks, helped me figure out a bigger problem there was with my router's access control and all kinds of crazy numbers that needed to be changed, but I got it.
    Problem is fixed as far as I can tell!

  • Flash app disconnects from FMS after an hour

    I have developed a Flash chat for a client using FMS2. The
    application is used by goups of 5-15 people, who will use it for up
    to 2 or 3 hours in one session, sometimes even longer.
    Many of our users are complaining that they consistently get
    disconnected after about an hour. They can usually log back in
    immediately. Are there any known issues with connections being
    lost?
    A second problem I'm facing is that periodically my entire
    interface(AS2, SWF7) stops interacting properly. No user
    input(click actions, text input) is received, and several animation
    scripts stop updating. However, the application is still connected
    and new messages are received. Again, users report this behavior
    consistently after an hour. I know that is an extremely ambiguous
    problem, but I've been going crazy trying to isolate the problem,
    if anyone has even a guess, I'm all ears.
    A few facts about the chat:
    - It uses a persistent RSO to store chat history
    - Chat messages are sent from client to server, and processed
    by server and put in the chat RSO
    - User listing and info is in an RSO, which is created by
    ther server and modified by the clients. It is modified frequently
    by all clients when they type, setting a "isTyping" flag to be
    rendered by their name on each clients user list window
    - I'm using a complex custom message renderer, which includes
    emoticon support and dynamic attach/removal of message clips when
    scrolled(to prevent application slow down as the chat history gets
    long).
    - Our users I believe are are using somewhat older computer
    equipment, and are fairly minimal in computer literacy/experience.
    Any help would appreciated.

    I solved my interface problem. Long story short I
    accidentally had an endless loop in teh suers RSO that was causing
    focus to be constantly stolen and placed on a certain textfield.
    However, I'd still be interested to know if there are any
    problems with connections dying after an hour, or any amount of
    time.

  • How do I stop Finder-Tabs from closing after ShutDown / Restart???

    Hi,
    After opening several Tabs in Finder, I find they have closed after I´ve shut down & then (Later), restart my Mac Mini.
    The Safari tabs stay open.
    Cant find anything in `Finder Preferences´ or in `System Preferences´.
    I tried Deleting:
    ~/Library/Saved Application State/com.apple.finder.savedState
    (Thanks to Carolyn Samit, but not a permanent fix)
    And also copied & pasted to Terminal:
    defaults write com.apple.finder NSQuitAlwaysKeepsWindows -bool true
    (Thanks to Miska for tip, but not a permanent fix)
    These two actions worked for two Shut Downs / Restarts.
    But I have just started up my Mac Mini after turning it off last night, and ALL the Finder-Tabs I left open are gone again!!!
    (Just the main Finder window is open!).
    Of course, I have "Reopen all windows after Shut Down / Restart" checked.
    (The Safari Tabs stay open!).
    Anyone know how to get round this, and how to keep the Finder-Tabs open after Shut Down / Restart???
    Thanks for all suggestions!
    AMI.

    Hi Carolyn,
    My Settings were already set as you described above!
    Thanks anyway.
    Strange thing is, I´ve just Logged In and all my Tabs are there again!!!
    One day here one day not - Somethings not right!  -  Lets see how it goes over the next couple of days!
    Again, Thanks! For all your comments & suggestions. 
    AMI.

  • I am trying to download application from last 5-6 hours but its not allowing me to downloading ?

    I am trying to download application from app store last 5-6 hours but its not allowing me to downloading ? can any one tell why ?

    Apple are having issues today:
    https://www.apple.com/support/systemstatus/

  • How can I keep Adobe Reader from closing 30 secs after I open it? Windows Vista

    My Adobe Reader closes after 30 seconds or so of being opened. I've been making changes to some of my windows settings in an effort to reduce risk of viruses and malware, etc. I don't know why it affected the time Adobe is allowed to stay open and so don't know how to fix the problem. How can I fix this?

    Three things to try:
    Using Windows Explorer navigate to C:\Program Files (x86)\Adobe\Reader 11.0\Reader, then double-click on Eula.exe and accept the license agreement
    Can you open Adobe Reader by itself?  If so, try disabling Protected Mode [Edit | Preferences | Security (Enhanced)].
    It could even be a malware issue; see http://helpx.adobe.com/acrobat/kb/reader-core-dll-error.html

  • Opening macbook pro from sleep after some hours, login screen is blurry with progress bar?

    I just got my first 13'' MBP three days ago.  Both last night and the night before I closed the lid to put it to sleep overnight for about 7 hours whilst plugged into the AC as to not drain unnecessary power. In the morning when I opened the lid it was on the login page but the screen was blurry and there was a progress bar on the bottom of the screen. My sister has had a MBP for a few months but this has never happened to her. The problem only lasted about 30 seconds but is it normal? Am I maybe doing something wrong?

    Did you quit out all of your applications prior to letting the MBP sleep over night? 
    If concerned, you can either call AppleCare or return the MBP.  You have 14 days from the date of purchase to return and/or exchange w/no questions asked. 

  • How can I keep PDF files from closing spontaneously?

    When I open a PDF file in Adobe reader it closes spontaneously in about 6 seconds. How can I fix that?

    I've also been having the problem of spontaneously closing PDFs, since installing Reader XI. The problem is not systematic. Sometimes PDFs do not open at first attempt but do eventually open after two, three or four tries, then spontaneously close after anywhere from one second to several minutes to an hour (while I am annotating them). The files seem to stablise after some period of working on them. Some files do not crash at all.
    I thought it might be embedded links to a server in India that cause the problem, until I had the same thing happen with a PDF I was looking at as a result of a web search. It does not happen with old PDFs, saved to my disc before Reader XI.
    No one yet has been able to diagnose the problem...

  • How to remove AppStore application from autorun after login in to system?

    I installed Yosemite (on clean disk) and now after login in to the system, it every time ask me about my credentials to AppStore and run Appstore application when I do enter apple login. What should I do for remove it from autorun?
    P.S. I do not see AppStore application in System Setting -> Users & Groups -> Login items.

    Thank you really much, it worked!
    Do you know how i could select all tables that are in text same time? There's over 700 tables in this file, so it will take some time to click them off one at time

  • PC disconnects from VPN after several hours, can't reconnect until PC reboot.

    Hi,
    I started using a private VPN for video gaming in general since last month, but I've started running into a problem I cannot fix... my PC tends to disconnect from the VPN after a while (6~12 hours of use?) and I can't reconnect to any VPNs until I reboot my
    PC.
    However.. my normal internet connection seems to work fine.
    When I try to reconnect to the VPN after I get dropped, I'm welcomed by this error:
    http://puu.sh/bicqT/0a6f1f8537.png
    I'm on Windows 7 64bit and I use the default windows VPN client... idk what's it called, it's what you setup in the network and sharing center.
    I've tried the following things:
    *restart network adapter
    *diagnose the issue with windows 7 network diagnostics
    */flush DNS cache
    */release and /renew lease
    *reset internet connection
    *using a neighbor's internet connection and I'm still unable to connect to any VPN until PC reboot.
    -- diagnosing the wireless adapter after the disconnect from VPN happens leads to this...
    http://puu.sh/bibQs/9873c02068.png
    http://puu.sh/bibn7/93ec6f0934.png
    http://puu.sh/biboF/3c9f865f15.png
    http://puu.sh/bibpw/b204c59f01.png
    http://puu.sh/bibq9/a10d3246d1.png
    I cannot repair it through diagnostics.
    Anyway, it's a problem on my end because I share the VPN with 2 other friends and they don't experience this problem... >_<
    If there's any information missing, please tell me and I'll provide.
    Thank you for any help!

    Hi,
    could you tell me do you run more than one VPN connection on your PC?
    Did you try to delete and re-configure the VPN?
    What type of security software are you using? Any kind of software which might block the traffic or close the port in case it thinks that something fishy is going on?
    Could you determine which manufacturer is your Wireless card, visit their website and download the latest drivers directly from their site. Or if you are using laptop, visit manufacturers website and download wireless drivers.
    You can try to update the drivers manually.
    What about that 'Enable logging' thingy? Can you enable it and when the next time disconnection happens, you might determine what is the exact issue with the VPN.
    Please click on Propose As Answer or to mark this post as and helpful for other people. This posting is provided AS-IS with no warranties, and confers no rights.

  • External Presenter removed from meeting after 1 hour of presenting

    Any time we have give presentation rights to an external customer who is coming in as a guest and using the web access to the meeting, and they are presenting for over 1 hour they are removed from the meeting while still actively presenting content.
    They must then rejoin the meeting and start presenting again.
    If the meeting organizer is presenting material to these same types of connection, they are not removed when they are just viewing what is being presented.
    It is only when they are presenting for more than 1 hour, that the external presenter is removed.
    It has got to be some sort of timer, just not sure where to look to find it.
    Any thoughts or suggestions?
    Thanks, Mike
    Mike

    Hi,
    I test the issue as a guest with Lync Web App, but not face the same issue.
    Please check if all users meet the same issue or just happen once.
    Please make sure Lync Server update to the latest version and then test the issue again.
    Best Regards,
    Eason Huang
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]
    Eason Huang
    TechNet Community Support

  • How do i keep my apps from closing when i click on the numbers button on the keyboard?

    Hello. Recently i have been having trouble with my ipod 4th generation. When ever i open the keyboard and tap on the icon to type in numbers or symbols the app closes. It happens on any app including safari. Please help!

    Try:
    - Reset the iOS device. Nothing will be lost      
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Reset all settings                            
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:                                               
    iOS: Back up and restore your iOS device with iCloud or iTunes
    - Restore to factory settings/new iOS device.                       
    If still problem, make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
    Apple Retail Store - Genius Bar                                                              

  • Applications closing after period of inactivity

    My applications are closing after a period of inactivity. I would appreciate any help. I'm on a 27inch iMac late 2013 running 10.10.1.
    If application is idol for some time it can close on me. Skype closes often. Adobe products and mamp will close periodically as well. This really interrupts my work flow. Any help would be much appreciated.

    Hello neverask333,
    Thanks for using Apple Support Communities. Based on what you stated, it sounds like multiple programs close on their own. I would recommend that you read this article, it may be able to help the issue.
    OS X Yosemite: If an app freezes or quits unexpectedly
    Thanks for using Apple Support Communities.
    Have a nice day,
    Mario

Maybe you are looking for

  • DR Server problem

    Dear All, We have SAP on Oracle 9i. There is also a DRServer on our remote site. I that i have restore whole database offline backup from my production server. Now i want to know that .. 1. where i can find the latest log of restore. 2. In that DR se

  • CALL_FUNCTION_RECIEVE_ ERROR ISSUE

    Dear All, In Transaction code st22 i m getting dump error from past 2 days..CALL_FUNCTION_RECIEVE_ERROR.. user name :-ddic client:000 Details are:- Error when receiving answer to a Remote Function Call. What happened? Error in the SAP kernel. The cur

  • ITunes library movies on tv?

    I have an external harddrive with my entire collection of dvds ripped onto it. The amount of movies exceeds what my Macbook could hold (memory wise) so this harddrive functions as my itunes library. It is then plugged into a time machine and broadcas

  • Drag and Drop with snap and response

    Ok, first of all I'm new to all of this as I'm just doing some parttime work. I'm trying to make a drag and drop game where the images (imported and made into movie clips with instance names "peg1 - peg7") are to be dragged onto targets (images, made

  • Bluetooth wireless keyboard

    I got a wireless apple keyboard for christmas for my ipad 3. It seems to work great but it there a reason it doesnt allow me to use the arrows to scroll up and down?