Fan still going when lid closed.

I bought the MacBook Pro about 3 years ago. Never had problems with the fan until now.
Normally, I never do anything major on the MacBook, just browsing and editing photos. So the fan hardly gets used during me using it. But the weirdest thing happened lately when the fan start going when the lid is closed in sleep mode, and it really heats up hot at the bottom. This is with just Photoshop open and Internet. Nothing else running, plus the lid is closed. How is that possible? It don't even do that when I am using the MacBook, so how can it be when I am not.
I also hear notification sounds when lid closed, which means it is not fully in sleep. I have rest PRM but still no good. Any ideas please? thanks guys!

thanks, but it stopped for about a week, and it's doing it again. Today I left it for about an hour lid closed, came back to it, it was burning hot, couldn't even put my hands on the bottom why is it doing this?

Similar Messages

  • How to tell embedded jinitator applet is still running when window closed

    Hello, we are trying to accomplish the same thing that is mentioned in this post from Metalink. I've searched for a solution and hope someone here can help. Instead of restating the issue I think David Wilson does a good job of explaining what is needed. Can anyone please suggest a possible solution?
    From: David Wilton 07-Oct-05 01:08
    Subject: How to tell embedded jinitator applet is still running when window closed
    How to tell embedded jinitator applet is still running when window closed
    Hi,
    We run an oracle 10g forms application through 9iAS over an intranet. All users are running windows 2000 professional.
    We run separate frame = true but I would like to switch to separate frame = false
    With separate frame = true if the user clicks the outer windows "X" close button (forms mdi window) the user is prompted to save changes before the application ends.
    BUT
    when using separate frame = false
    If the user clicks the upper window "X" button (no longer form mdi window but regular browser window) the window and application is abruptly closed.
    I'm interested in using a onbeforeunload function to confirm if the user wants to close the window. This would be placed in the basejini.htm file. This could always ask if the user wants to exit or not. If they click OK then the window closes but if they click "Cancel" you are returned to the forms application exactly where you left. something like event.returnvalue="do you really want to exit?";
    However if the user exited using the normal exit form method then the applet is already closed before the onbeforeunoad event fires and there is nothing to go back to and I want the window to close automatically. This is accomplished using close.html file in post forms trigger.
    So what I want and what I think many may also want is the check if the embedded applet is still running and if so prompt the user to return to the application or continue to close. Of course If the applet is no longer running then just close because there is no reason confirm closing anymore.
    Does anyone have a html/JavaScript solution that can be placed in the jinitiator.htm file? or similar?
    Thank you
    David
    [email protected]
    From: Andrew Lenton 07-Oct-05 08:58
    Subject: Re : How to tell embedded jinitator applet is still running when window closed
    I don't know if this is exactly what you are after but you can add the following to the top of your basejini.htm file and it should prompt the user before exiting the IE window.
    <BODY %HTMLbodyAttrs%>
    %HTMLbeforeForm%
    <SCRIPT>
    <!--
    window.onbeforeunload = unloadApplet;
    function unloadApplet(){
    message = "Warning! Please exit the Java Applet prior to
    exiting the browser"
    return message;
    //-->
    </SCRIPT>
    From: Oracle, mohammed pasha 07-Oct-05 09:55
    Subject: Re : How to tell embedded jinitator applet is still running when window closed
    David,
    Well I could not understand your complete requirement.
    Refer to Note.201481.1 How to Close the Browser Window When Closing Forms And How to Simulate SeparateFrame By Javascript
    Note.115905.1 How to Close Browser Window When Closing Webforms Applet
    Kind Regards,
    Anwar
    From: David Wilton 07-Oct-05 14:37
    Subject: Re : How to tell embedded jinitator applet is still running when window closed
    Thank you for your reply and yes you did not understand my question fully.
    Sorry if this is a long reply
    I am able to close the browser window using information in notes 115905.1 and 201481.1, this is not the issue. We implemented this several years ago. It is workable for both separate frame = true or false.
    It is most important to not allow the user to end their forms application by closing the windows browser, they must close using normal form exit commands.
    What I want is to have separate frame = false, the big drawback to this option is the user can exit the application and bypass all forms code by pressing the windows "X" close button. This is why we need the code as just provided by Andrew Lenton above in this thread.
    BUT Andrew's code will always prompt the user before closing the window and I do not want that. I want the user to be prompted only under scenario 2 listed below.
    Here's the 2 case scenario for exiting the application.
    1. If the user closes properly and uses exit form which fires all normal form triggers including post_form with it's call to close.html file.
    All uncommitted changes are saved or rollback and the users session is ended normally both on the database and in the application server.
    All browser windows will close, great all is good. And without Andrew's code the window will close but with Andrew's code the user will be prompted to close or not, if they select Cancel the window will remain but the applet has already ended so why prompt? ...This is what I want to avoid.
    2. In the forms app. if the user clicks the windows "X" close button with uncommitted changes. The browser just closes the changes are rollback without prompting the user to save. The users sessions are now lost and still running in the database and application server until they are timed out.
    If I use Andrew's code then the user will be prompted to continue to close or go back, if they click Cancel to go back then focus returns to the forms application and the user can continue to work. If the user clicks OK then the window closes and unfortunately their sessions are still lost until timed out.
    So what I desire is to add to Andrew's code to check if the embedded applet is still running and prompt the user to close or not accordingly.
    Something like:
    Basejini.htm like
    </HEAD>
    <SCRIPT LANGUAGE="JavaScript">
    function maximizeWindow()
    window.moveTo(0,0);
    window.resizeTo(screen.availWidth,screen.availHeight);
    function confirm(){
    If(document.embeddedapplet.closed())
    Win.opener = self;
    win.close();
    Else if
    event.returnValue = "Closing Forms Application. OK to continue?";
    </SCRIPT>
    <BODY %HTMLbodyAttrs%, onload="maximizeWindow()", onbeforeunload="confirm()">
    %HTMLbeforeForm%
    I hope this explains my requirements.
    David
    From: Oracle, Evelene Raechel 10-Oct-05 06:45
    Subject: Re : How to tell embedded jinitator applet is still running when window closed
    Hi,
    Note.199928.1 How to Alert User on Closing Client's Browser Window in Webforms
    Regards,
    Rachel
    From: David Wilton 11-Oct-05 17:40
    Subject: Re : How to tell embedded jinitator applet is still running when window closed
    I'm sorry this is not helpful at all.
    Note 199928.1 is only an alert which does not stop the closing of the window and still displays as an alert if the user does close properly using exit form ... so why would you want to display the alert then?
    This is exaclty what I do not want and why I want to determine if the applet is still running before displaying any kind of message.
    David
    From: Oracle, Evelene Raechel 17-Oct-05 12:23
    Subject: Re : How to tell embedded jinitator applet is still running when window closed
    Closing thread.
    Thanks,

    Hello,
    I had the same issue last year - wanting to provide a warning on closing the browser, but only if the Forms session is still running. The approach I took is described below, see also the thread where I originally posted this at Closing brower window
    Hi there,I've had a similar requirement - or rather, the two conflicting requirements: to warn when the browser is being closed, but for the app to be able to close the browser without a warning being fired.
    To always provide a warning when someone (the user or the Forms app) tries to go to a different page (e.g. your close.htm), use Javascript like:
    function confirmExit(){
    if(appletRunning==true) {
    msg="Closing this window or navigating to another page will end your SomeGreatApp session.";
    window.event.returnValue=msg;
    And make a call to confirmExit() in the onBeforeUnload event of your main page.
    You'll notice I first check an 'appletRunning' variable before displaying the warning. This Javascript variable is set to true by my app when it starts up, using an embedded Javabean that calls out to Javascript. Once that variable is set to true, then the warning will be displayed if the user tries to shut the browser by clicking on the 'x' button, or to go to a different URL.
    When my app is shutting down, it uses the same Javabean to set appletRunning back to false. It then navigates to a close.htm - which will be done without a warning being displayed.
    See Re: How can a Javabean call Javascript function of the basejpi.html?? for example code on how to call Javascript from a bean embedded in your Forms app.
    Hope these ideas help you out, it's worked for me (so far, anyway!!)
    James

  • Computer not going to sleep when lid closed

    My wife's new MacBook Air has a couple of problems we can't figure out.  First sometimes the computer is not going to sleep when lid is closed and when we lift the lid everything is frozen.
    Second, the user Library folder is not seeable in her user account.  I know it's there because on the side bar there's a short cut to Preferences folder which we can open.
    Strange behavior.
    Thanks,
    Ron

    Ron,
    The user library folder (~/Library/) is hidden by default in Lion. I assume Apple doesn't want people mucking around with the sensitive files in there. So this is normal behavior.
    As for the freezing issue, I would suggest you reset your power management and perform a safe boot to clear out caches. You should also see if the issue persists after disconnecting USB perhipherals.
    Here's how:
    Power Management:
    Shut down the computer.
    Plug in the MagSafe power adapter to a power source, connecting it to the Mac if its not already connected.
    On the built-in keyboard, press the (left side) Shift-Control-Option keys and the power button at the same time.
    Release all the keys and the power button at the same time.
    Press the power button to turn on the computer. 
    Note: The LED on the MagSafe power adapter may change states or temporarily turn off when you reset the SMC.
    Safe Boot:
    Be sure your Mac is shut down.
    Press the power button.
    Immediately after you hear the startup tone, hold the Shift key. The Shift key should be held as soon as possible after the startup tone, but not before the tone.
    Release the Shift key when you see the gray Apple icon and the progress indicator (looks like a spinning gear).

  • Wake on wireless possible?  Disable sleep when lid closed?

    I just bought my first Mac & am still trying to figure some things out.
    Is there a way to have it wake on wifi? I like to be able to connect to my machines when I'm at the office. My Macbook goes to sleep & then I can't remotely access it. Wake on LAN works fine, but I don't want to keep an ethernet cable plugged in.
    Another thing I can't seem to get is how to disable the Macbook sleeping when I close the lid. On my old Windows laptop, I'd often put on a podcast & listen while falling asleep & have one start as an alarm clock in the morning. I like to keep the lid closed to keep out dust, etc.
    I found a 3rd party app InsomniaX, but would rather find a supported way of doing this.

    Insomniax is your best bet. The only other way would be have an external monitor, keyboard, and mouse hooked up.

  • MacBook Pro does not sleep when lid closed

    Hi there. I recently upgraded my MacBook Pro from Snow Leopard to Mountain Lion. Before the upgrade my mac would sleep automatically when the lid closed. However, ever since I've upgraded, when I close the lid, my mac doesn't go to sleep. However, if my mac isn't plugged in (running off the built in battery) it goes to sleep. I looked through system preferences and I can't seem to find any settings relating to this, does anyone have any suggestion on what's happening and how I can fix it? Many thanks in advanced.

    Test after each of the following steps that you haven’t already tried: Step 1 Apple menu > System Preferences > Print & Scan > Open Print QueueCheck all printers for unfinished jobs. Deal with any you find. Step 2 Apple menu > System Preferences > Energy Saver > Power Adapter > Wake for network access: uncheck. You may need to unlock the preference pane by clicking the lock icon in the lower left corner and entering your administrator password. Step 3 Apple menu > System Preferences > Energy Saver > Schedule > Start up or wake: uncheck.    Step 4   Apple menu > System Preferences > Sharing: uncheck all boxes. Step 5 Disconnect all wired peripherals except keyboard, mouse or trackball, and monitor, if applicable. Step 6 Launch the Activity Monitor application. Select All Processes from the menu in the toolbar of the Activity Monitor window, if not already selected. Enter “powerd” (without the quotes) in the "Filter" text field. Select the powerd process and click the Quit Process button in the toobar (stop-sign icon.) In the sheet that opens, click Force Quit. You’ll be prompted for your administrator password. The process will be relaunched immediately. Step 7 Reset the SMC. Step 8 Boot in safe mode and log in. The instructions provided by Apple are as follows: 
    Shut down your computer, wait 30 seconds, and then hold down the shift key while pressing the power button.
    When you see the gray Apple logo, release the shift key.
    If you are prompted to log in, type your password, and then hold down the shift key again as you clickLog in.
     The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin. Note: If FileVault is enabled under OS X 10.7 or later, or if a firmware password is set, or if the boot volume is a software RAID, you can’t boot in safe mode. Safe mode is much slower to boot and run than normal. Don’t launch any applicationsat first. If sleep still doesn’t work properly, back up all data and reinstall the OS. After that, if you still have the issue, make a “Genius” appointment at an Apple Store to have the machine tested. If sleep now works as expected, go on to the next step. Step 9 Still in safe mode, launch the usual set of applications that are running when you have the problem, including your login items, one at a time, testing after each one. Some applications may not work; skip them. You might be able to identify the cause of the problem this way. Step 10 If sleep is still working after you’ve launched all the usual applications, reboot as usual (not in safe mode) and test again. If sleep still works, you’re done, at least for the moment. If you still have the sleep issue after booting out of safe mode, post again.

  • Any way to prevent macbook air from sleeping when lid closed?

    I believe there is no way to keep your macbook/air running when you shut the lid.
    I am running a background job where I am downloading a huge amount of data from the internet, which is coming through slowly (other applications could be where I am running a web server....). I want the machine to be running, but not keep the lid open - since I might want to move the laptop, not leave the screen/keyboard exposed.
    Where can I request Apple to add support for this behavior? Or did they anticipate this request in Mountain Lion already?
    Any suggestions? Others who would like the same feature?

    NoSleep makes closing of your MacBook lid possible without going into sleep mode. Now you shouldn't plug your mouse and monitor to stay computer awake - just check a tick in the System Preferences and continue downloading of huge files and watching favorite movies over the network with lid closed.
    here you go : http://lifehacker.com/5934158/nosleep-for-mac-prevents-your-macbook-from-sleepin g-when-you-close-the-lid

  • Frozen when lid closed

    My laptop is Win8.1, I have set it to do nothing when lid is closed and power options are set to stay alive.
    I close the laptop lid and go to work. At work I TeamViewer onto my laptop but I cannot control Firefox (I can control the rest of the OS).
    Today I left my laptop open and now at work I have full control of Firefox, as well as everything else.
    Its like Firefox freezes with the lid closed switch

    Ok, if it works ok in Safe Mode, then an add on is causing this issue. [[Configuration Options for Add-ons]]
    The Reset Firefox feature can fix many issues by restoring Firefox to its factory default state while saving your essential information. <br>
    '''Note''': ''This will cause you to lose any Extensions and some Preferences.''
    *Open websites will not be saved in Firefox versions lower than 25.
    To Reset Firefox do the following:
    #Go to Firefox > Help > Troubleshooting Information.
    #Click the "Reset Firefox" button.
    #Firefox will close and reset. After Firefox is done, it will show a window with the information that is imported. Click Finish.
    #Firefox will open with all factory defaults applied.
    Further information can be found in the [[Reset Firefox – easily fix most problems]] article.
    Did this fix your problems? Please report back to us!
    Thank you.

  • Suspends only every second time when lid closed

    Hello everybody, my problem is as the  subject: to suspend I have to close usually the laptop lid twice.
    I'm using kde, but I have also used years ago fluxbox, tweaking scripts and using laptop-mode (which is not running now). Thanks in advance for every idea where to look.
    /etc/acpi$ cat handler.sh
    #!/bin/sh
    # Default acpi script that takes an entry for all actions
    minspeed=`cat /sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_min_freq`
    maxspeed=`cat /sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_max_freq`
    setspeed="/sys/devices/system/cpu/cpu0/cpufreq/scaling_setspeed"
    set $*
    case "$1" in
    button/power)
    case "$2" in
    PBTN|PWRF)
    logger "PowerButton pressed: $2"
    poweroff
    logger "ACPI action undefined: $2"
    esac
    button/sleep)
    case "$2" in
    SLPB|SBTN)
    echo -n mem >/sys/power/state
    logger "ACPI action undefined: $2"
    esac
    ac_adapter)
    case "$2" in
    AC|ACAD|ADP0)
    case "$4" in
    00000000)
    echo -n $minspeed >$setspeed
    #/etc/laptop-mode/laptop-mode start
    00000001)
    echo -n $maxspeed >$setspeed
    #/etc/laptop-mode/laptop-mode stop
    esac
    logger "ACPI action undefined: $2"
    esac
    battery)
    case "$2" in
    BAT0)
    case "$4" in
    00000000)
    logger 'Battery online'
    00000001)
    logger 'Battery offline'
    esac
    CPU0)
    *) logger "ACPI action undefined: $2" ;;
    esac
    button/lid)
    case "$3" in
    close)
    logger 'LID closed'
    open)
    logger 'LID opened'
    logger "ACPI action undefined: $3"
    esac
    logger "ACPI group/action undefined: $1 / $2"
    esac
    # vim:set ts=4 sw=4 ft=sh et:

    I actually do not understand who comands at the end - this handler.sh or the settings in Kde-powermanaging, I guess it's the second, I did remove the actions for suspend on lid close time ago. I made a test now, when I change handler.sh and check "do nothing when lid close" in kde powersettings happens exact the same: performs suspend every second time only.
    button/lid)
    case "$3" in
    close)
    logger 'LID closed'
    /usr/sbin/pm-suspend
    open)
    logger 'LID opened'
    logger "ACPI action undefined: $3"
    esac
    Last edited by steff (2012-07-21 17:08:46)

  • MB pro not sleeping when lid closed

    Hi, I came to work today, opened my backpack and found my laptop extremely hot in its sleeve. It appears it had not gone to sleep when I closed the lid. It then failed to run properly for about 20 minutes until it cooled down. Now it is ok, except that it will not run in lid-closed mode. I plug in my external display, put it to sleep, and wake it back up with the lid closed in order to use the external display. The display fires up for a few seconds and then turns off again. I've tried this over and over again, the computer simply won't stay on for more than a few seconds. However, when the lid is opened, it will run the external display in mirrored mode just fine. I think something is toast. Coincidentally, I had just downloaded the keyboard update 1.0 a day earlier... Anybody know why my computer is not sleeping when I close the lid and why it won't work in closed-lid mode anymore?

    I've had a similar problem since I first got this a year ago. Sometimes when I shut the lid, the display does not go to sleep, and sometimes it restarts automatically when I shut the lid! I've also found it very hot at times when it should have been sleeping. So far, it's only been a minor annoyance.

  • Lock button on.  iPad won't lock when lid closed

    Lock button is on but iPad will not shut off and lock when lid closes

    Maybe the magnets on the lid are askew?
    This read may provide insight: http://www.ifixit.com/Teardown/iPad+2+Smart+Cover+Teardown/5089

  • MacBook - stop going to sleep mode When lid closed

    Hi ,
    I am using handbrake to convert video files on macbook .
    I want to close the laptop lid and still want the process to run in background .
    Some one mentioned that if the laptop lid is closed and the system is running it gets heated rapidly .
    I want to do this for 45 minutes ( commute between office and home ).
    So , how do I close the lid ( display ) and not allow the system to go to standby/sleep.
    Thanks
    macbook   Mac OS X (10.4.9)  

    You could also use InsomniaX.
    I do not think that it's that bad for your macbook (heat generation); see this article: How to use your PowerBook G4, MacBook Pro or MacBook with the display closed.
    I would not recommend picking your notebook up, though, since the hard disk's heads could scratch your hard disk... That's one of the things standby prevents.
    By the way; why wouldn't you use standby? Your mac goes in standby rapidly, and wakes up even faster!

  • X120e does not sleep when lid closed

    I found another similar post, however it was resolved by the individual reinstalling the operating system.
    My issue is more complicated. I have made sure everything is up to date, all the settings that tell the system to sleep when the lid is closed are turned on. I have even turned those settings off off, just so I could turn them back on to make sure there wasn't something quirky about it.
    I have tried restoring the system to factory settings using the recovery partition, as well as discs burned from the program that came with the computer. I have tried clean install from Windows 7, 8, and 8.1 discs.
    The unit still does not sleep. I don't ever remembering it being able to. I once closed the display thinking it would sleep (power was plugged in). Woke up the next day, went to work for 8 hours, came back and felt that the system was really hot. Opened the lid and the screen was exactly as I had left it the day before.
    When I first got the system in 2012, the screen did not work, so I actually had to send it to Atlanta, GA for repairs. It came back quickly, and it still did not work, so I actually sent it back to Atlanta, GA's repair center a second time in the same week. It came back working and I left it alone. I never tested the sleep/wake because I always just turned the system off when I was done with it, but now I am back in school and this little computer comes in handy, but I don't want to turn off the system manually going from class to class when I need to pack it away in my bag.
    Could there be a hardware issue? Something inside not connected? This laptop works perfectly EXCEPT for the fact that it will not sleep when the lid is closed. It is out of warranty but had I known this was an issue while it was still under warranty, I would have inquired. This unit is in pretty fantastic shape, looks brand new too. No damage, never been dropped, and only ever handled by me (never loaned out).
    How can I fix this?

    Thanks for the reply, gat0gelat0.
    Yes, those settings were the first things I checked. I also tried changing it to "Do nothing", then changing back to the sleeping option. It still does nothing when I close the lid.
    I would like the functionality of it going to sleep when I close the lid for the convenience, like when class ends, I have to rush to my next class, I just want to close the lid, put it in my bag and run to the next class. Keyboard shortcuts like Fn-F4 work, but this laptop should have the functionality I am describing, and I want to figure out why it isn't working and how to fix it.
    I suspect there is an issue with whatever is used hardware wise to sleep the machine. Either it's not being triggered, or it's not there, or it's broken. I've tried running a magnet around the bezel of the LCD screen as well as around the palm rest bezel and there is no activity as I've read that many laptops trigger sleep by interaction by a magnet. Still nothing.

  • Macbook Pro not sleeping when lid closed

    Since upgrading my late 2011 13-inch Macbook Pro to Yosemite, I've noticed that it does not go to sleep properly when I close the lid. While the screen does turn off, the white LED remains on at full brightness and the fans spin up to maximum speed. When I open the lid again, the fans slow down but the screen doesn't turn back on until I press a key. This suggests it wasn't sleeping at all and the display saver simply activated.
    If I use the Apple menu (top left) to enter Sleep mode, wait for it to go to sleep then close the lid, it sleeps properly with the white LED glowing slowly.
    I have checked the Energy Saver preferences, and there is no Sharing set up so I doubt that's the problem. Is anyone else having this issue? Any ideas how to fix it?

    Similar issue after upgrade w my MBP (early 2011). 
    Close the screen with apps open... climb into bed... the laptop appears to enter sleep BUT several times thruout the night I hear the optical drive spin up along with the hard drive and screen glow (visible w screen closed as a glow)... then... it goes back to sleep (must detect closed screen). 
    Weird. 
    Did not do so with prior OS installs (not hardware issue... related to Yosie install).  

  • IBook will not sleep when lid closed

    Hi,
    I recently had my Hard Drive replaced, the old one died. It was all covered by AppleCare and the repairs done at a Apple Authorised Outlet. After installing everything again I just found out that my iBook will not sleep when the lid is closed. The screen is still on and bright. Any ideas why? Is this dangerous? Any quick fixes?
    Cheers,
    Jack

    Jack,
    Welcome to Apple Discussions.
    You need to give the Apple Authorized Repair center a call back and let them know what's going on. I've seen this before here on the forums, and it was attributed to a sleep magnet not being put back in. It's most likely this. Apparently, putting this magnet back in can be easily overlooked.
    Brian

  • Password lock only when lid closed

    I'm reviving an old thread here to see if this is possible in Lion before I upgrade. Here is the original question from Haiiyaa as he stated it most succinctly:
    Hi,
    I have a MacBook. I am trying to find a way so that the computer prompts me for a password only when i close the lid . Not everytime the monitor goes into screensaver or sleep mode. I have looked for a solution for this all over the web, and it just doesn't seem possible. I am surprised that is the case. Isn't it a little annoying that you have to log in everytime the computer screensaver comes on?
    Especially when I am in battery mode, the laptop goes into sleep mode very quickly. I don't want to log in everytime i need to use the laptop.
    Thanks
    Here are the two threads which covered it in 10.6. The answer was that this can't be done.
    https://discussions.apple.com/thread/2133777?start=0&tstart=0
    https://discussions.apple.com/message/10075887#10075887
    Anyone have any new ideas?
    Thanks,
    M

    Hi Matthew,
    I'm sorry to say I have no answer, but I'm also searching a solution. Even though it seems to be poorly understood by most people, and appears relatively minor on the surface, I see it as a huge gaping security hole.
    Take for example the following:
    During the evening, I'm at home, around, making dinner and occasionally using my computer. It's open, on my desk, and is secure by the sheer virtue of there being nobody with access to it at that time. It may be hours between uses, but I don't ever want to be bothered for my password.
    But, the moment I step out of the flat, or at a coffee shop, or if my bag is stolen, or when only my roommates are home, I want that thing to be locked. And I want that lock to be really, really easy to engage, in which I think that closing the lid is the simplest, quickest, and most visibe at a glance. No menus, hotkeys, dialogues, delays, etc..
    So in summary, we want the same behaviour, which was really freaking easy in 10.5.x, and has been unceremoniously yanked out from our favourite os.
    Booo!! Hisss!!

Maybe you are looking for

  • SOAP (EJBs) clustering (WLS 7.0)

    Hi all, I had posted this before, too. But I did not get any working feedback. Has anyone ever tried clustering SOAP impls (EJB) in WLS? Does WLS support this? I am able to deploy simple EJBs across clustered WLS instances. I am unsuccessful in doing

  • Error in \.hotjava\properties

    I want to load image by using mediatracker API. After I run my code it comes the error message: Can't read AppletViewer properties file: F:\Documents and Settings\mie\.hotjava\properties I googled, and find solution below: Sun's appletviewer allows a

  • How to create a table inside a table in the dictionary

    I need to create a table in the dictionary that one of the components has to be a table. Someone known how to do it. Thanks.

  • "Browse Presets" in Bridge Problem

    "Browse Presets" from within Premiere and AE does not open Bridge. I have to open Bridge, but i cannot get the effects and presets thumbnails to animate in Bridge. Double-clicking on the preset DOES place the effect on the desired clip - no problem t

  • Lov Values are not showing for Discoverer Reports in Application

    Hi, I developed some discoverer reports, those reports having parameters with LOV. Those LOV values are showing in Discoverer Desktop, but after registering those reports in Oracle applications those LOV values are not showing. Pls let me know how re