Why does the screen turn back on when the brightness is turned down?

Hi,
I bought a macbook pro (Mac OS X 10.6.8), and just recently last week when i turn the brightness down to black, after a couple minutes later the screen turns back on. Then when i touch the trackpad then it goes back to black. Is there any way where i can change this setting??? because this didn't happen before and now it just constantly occurs.

michael Kirwan wrote:
Why does my mac mini automatically restart when I shut down?
Seems that some process is calling it back.
If I shut down via the log in screen it turn's off. What gives?
Probably a process in your account and not systemwide.
Go to System Preferences >> Accounts >> Login Items, and remove them. BShutdown and test. If not go to ~(yourHome)/Library/Contextual Menu Items and move whatever is there to the desktop. Test.
EDIT: Also, unmount & disconnect all peripherals except Apple keyboard & mouse.
-mj
Message was edited by: macjack

Similar Messages

  • Why does my screen come up dark when I press the camera icon?

    Why does my screen come up dark when I press the Camera icon?  I can neither take pictures nor look at the photos I have saved.

    Doulbe tab the home key to see the task bar.  Touch and hold any of those icons until they jiggle, then delete them by touching the minus sign.   Then reboot the pad by holding the sleep and home buttons until the apple logo appears.  Ignore the red slider.
    You either have another app open that is using the camera, or you just have too much stuff in memory.  The reset process should clear it up.

  • HT1420 i tried updating the software on my i pod touch, and it looked like it was working cause it said "verifying update". but suddenly the screen went black and when i tried to turn it back on, it only had a picture of a usb chord pointing to the itunes

    i need help. i tried updating the software on my ipod touch, and it looked like it was working fine, because it said "verifying update", but suddenly the screen went black and when i tried to turn it back on, it only had a picture of a usb chord pointing to the itunes icon. what do i do?

    Your iPod has dropped into Recovery mode. You'll need to restore it via iTunes on your computer.
    http://support.apple.com/kb/ht1808
    Regards.

  • Why does my iphone take so long to turn back on when the battery runs out?

    Ok, granted, I am guilty of not always plugging my iphone in when it gives me the low battery warning. But why does it take SOOOO long to get enough charge to turn back on? If apple is taking suggestions, then my suggestion is that you should just be able to plug it in and it should be ready to use within a minute, like other cell phones. I've had my battery die mid phone call, and then had to wait for it to get enough charge to call back. I know its maybe only about 5-7 minutes but that seems like forever to return a dropped call. Does this happen to anyone else or is something wrong with my phone? Any suggestions?

    Apple set the default to 10 minutes before you can use the iPhone. After 2 minutes you'll get an image of the low battery. It's in the iPhone Users Guide, page 49.

  • Why does Do Not Disturb only work when the iPhone is locked?

    I've been wanting for awhile now a way to easily turn off all notification alerts and incoming calls while keeping cellular data and wi-fi on so I can use my phone in peace without gimping my wireless connections, and even though iOS 6 as a whole seems awesome to me, I'm disappointed Do Not Disturb only works when the iPhone is locked.

    Was just wondering if other people felt the same way I do and start a discussion about it so maybe that with more people talking about it, Apple would pay attention to it more. People complaining about how calls and alerts were lighting up their screen at night seems to be some inspiration to why Apple added Do Not Disturb in the first place. Didn't know I was doing anything in violation of the Terms of Use so sorry about that.

  • Why does URLStream complete event get dispatched when the file is not finished loading?

    I'm writing an AIR kiosk app that every night connects to a WordPress server, gets a JSON file with paths to all the content, and then downloads that content and saves it to the kiosk hard drive. 
    There's several hundred files (jpg, png, f4v, xml) and most of them download/save with no problems.  However, there are two f4v files that never get downloaded completely.  The complete event does get dispatched, but if I compare the bytesTotal (from the progress event) vs bytesAvailable (from the complete event) they don't match up; bytesTotal is larger.  The bytesTotal (from the progress event) matches the bytes on the server. 
    The bytesLoaded in the progress event never increases to the point that it matches the bytesTotal so I can't rely on the progress event either.  This seems to happen on the same two videos every time. The videos are not very large, one is 13MB and the other is 46MB.  I have larger videos that download without any problems.  
    [edit] After rebooting the compter, the two videos that were failing now download correctly, and now it's a 300kb png file that is not downloading completely.  I'm only getting 312889 of 314349 bytes.
    If I paste the url into Firefox it downloads correctly, so it appears to be a problem with Flash/AIR.
    [edit] I just wrote a quick C# app to download the file and it works as expected, so it's definitely a problem with Flash/AIR. 
    Here's the code I'm using:
    package  {
        import flash.display.Sprite;
        import flash.events.Event;
        import flash.events.ProgressEvent;
        import flash.net.URLRequest;
        import flash.net.URLStream;
        [SWF(backgroundColor="#000000", frameRate="24", width="640", height="480")]
        public class Test extends Sprite {
            private var fileSize:Number;
            private var stream : URLStream;
            private var url:String = "http://192.168.150.219/wordpress2/wp-content/uploads/2012/12/John-Butler-clip1.f4v";
            public function Test() {
                if (stage)
                    init();
                else
                    this.addEventListener(Event.ADDED_TO_STAGE, init);
            private function init(e:Event=null):void {
                this.removeEventListener(Event.ADDED_TO_STAGE, init);
                stream = new URLStream();
                stream.addEventListener(ProgressEvent.PROGRESS, onLoadProgress);
                stream.addEventListener(Event.COMPLETE, onLoadComplete);
                stream.load(new URLRequest(url));
            private function onLoadProgress(event:ProgressEvent):void {
                fileSize = event.bytesTotal;
                var percent:Number = event.bytesLoaded / event.bytesTotal * 100;
                trace(percent + "%");
            private function onLoadComplete(event:Event):void {
                trace("loaded", stream.bytesAvailable, "of", fileSize);
                // outputs "loaded 13182905 of 13184365"
                // so why is it "complete" when it isn't finished downloading?

    Thanks for your quick reply !
    I am relatively new to programming so please bear with me on this as I still haven't managed to grasp some of those things that "make perfect sense". If I am setting mouseEnabled to false doesn't that mean that the object no longer gets MouseEvents ?
    If I have understood you correctly then once the mouseEnabled is set to false the btn object is removed from the objects recognizable by the mouse - hence dispatching a mouseout event (and I am guessing here) from the mouse?
    I still don't get it though, if the listeners are set to the object and the object is no longer accessible to the mouse why is the event still being dispatched ?
    I get it that the making of the object unavailable to the mouse causes the "removing" (deactivating) of the object from under the mouse,
      step 1. deactivate object, and  step 2. (as a result of step 1) register the removal of the object.
    but why is the mouse still listening after step 1?
    Even if the action is that of "out" (as in the object is no longer under the mouse) it still is an action isn't it ? so haven't we turned off the listening for actions ?
    I promise I am not trying to drive you crazy here, this is just one of those things that I really want to get to the root of !
    Thanks,

  • Why does my screen keep flashing white when I use my front facing camera?

    I have an iPhone 4s running iOS 5.1. Whenever I use my front facing camera, the footage I take shows a white flash on the screen every second or so. It looks almost like the glare that you get from looking straight into a flashlight. This doesn't happen every time time I film, and when it does, it can easily be solved by stopping and restarting again, but it's still annoying.

    This issue is associated with your graphics driver not being compatible with PS' hardware acceleration. Updating the driver if possible would be advisable, otherwise turn off OpenGL drawing under Preferences --> Performance.
    Mylenium

  • Why does Satellite Pro A300 not start when the power button is pressed?

    Suddenly my new Satellite Pro A300 will not start correctly when the power button is pressed. The situation is this: When I press the power button the Toshiba opening picture (Leading Innovation) appears and disappers quickly. Then there is a black screen for about 30 seconds. Then there is a rectangular frame with the text Microsoft Corporation underneath. And nothing happens however long I wait.
    In order to get on with the starting proces I then shut down the computer by pressing down the power button until the computer stops. ("The hard way to shut down")
    Now I press the power button shortly to turn on the computer. Then the computer starts normally with the Toshiba opening picture and after a few seconds I am asked to open the computer in safe mode or in normal mode. I now choose to open in normal mode and the computer opens normally and is ready to work.
    What shall I do to get a normal start procedure?

    When notebook starts normally (after choosing normal mode) shut down your notebook properly using START > Shut down option. Next start should be normal.
    When the OS is switched down on irregular way you will be always asked how to start it again (safe or normal mode).
    The same happen on my Satellite A300.

  • Why does my screen go all chequered when I load a DVD using apple TV?, why does my screen go all chequered when I load a DVD using apple TV?

    Hi, hope someone can help me with this one. I've been using apple TV to connect my Imac and new Phillips smart TV. Until recently there have been no problems. Now when I launch a DVD disk in the Imac, the screen goes chequered, like a chess board, and the Tv shows the same. I've tried with three different DVDs but with the same result. Everything else works fine, music videos play and so too music files.Thanks!

    it's by design it's the encryption of the dvd which block it
    the same thing would happen if you used remote desktop or some of those solutions
    some people repport that VLC player works but that could only be the case if they violate the DRM of the dvd in terms of breaking the encryption

  • Why does my screen display automatically brighten when I have completely dimmed it, when I am about to go to bed in a dark room with no ambient light?

    This is an issue that has been driving me crazy! When I get ready to go to bed I have iTunes running and I manually dim the screen all the way so it is black. For some reason in the last couple of months the screen has automatically brightened for no apparent reason. I have read lots of forums about the screen going dim at unwanted times, but never anything about a dim screen that automatically brightens. I have played around with different positions of the screen to see if ambient light was causing the problem, but it still happens regardless of where it is. I am not touching the computer so it isn't affected by a function or program it is trying to run. Any help or suggestions would be greatly appreciated! I hate when I feel like my computer is smarter than me
    Running system 10.6.8, computer was purchased in December 2009

    lynnyfrombloom wrote:
    I have an I phone 4s and purchased it originally through a Verizon prepaid plan.  It has not been locked by them and never was.
    Um... yes. It was, and is.
    Verizon says my phone is free and clear and has been taken completely out of their system.
    Whoever told you that doesn't know what they are talking about.
    A Verizon iPhone 4S can not be unlocked for use on any US carrier. It can only be used on Verizon in the US. If you want to use a carrier other than Verizon, you will have to buy a new phone.

  • The home button of my ipod touch is broken. I tried to reboot it, then it turned into a loading screen that's simulair to the screen wich it shows when its about to turn it self of(a circle with a turning white light). it doesnt respond to the powerbutton

    my ipod touch is stuck in a loop the screen is black and u only see this. my ipod doesnt respond to pressing the lock button. And my home button is broken. So what to do to restore it??

    Try placing the iPod in recovery mode using this program and they try restoring via iTunes
    RecBoot: Easy Way to Put iPhone into Recovery Mode
    - If not successful let the battery fully drain. After charging for an least an hour try again.

  • Why does my ipod keep freezing up when i try to turn it back on?

    every time my ipod dies and i try to turn it back on it freezes up.. why? also every time i try to use an app it goes in and in like 5 seconds the app closes.. i've restored it but that only helps for a few days and then goes back to doing the same.. what can i do to make that stop or should i get a new itouch? it also freezed up when i try to reset it..

    If it is still acting up after a restore, you more than likely nave a hardware issue.
    Basic troubleshooting steps  
    17" 2.2GHz i7 Quad-Core MacBook Pro  8G RAM  750G HD + OCZ Vertex 3 SSD Boot HD 
    Got problems with your Apple iDevice-like iPhone, iPad or iPod touch? Try Troubleshooting 101
     In Memory of Steve Jobs 

  • Why does my iPod touch keep freezing when I attempt to turn off iCloud Keychain in the settings?

    Everytime I try to turn off iCloud Keychain, my iPod's
    Screen freezes and automatically turns iCloud Keychain back on. I really don't want ICloud Keychain and it has been a while since I tried to turn it off.

    Maybe:
    https://discussions.apple.com/message/23482925#23482925
    make sure you read through all of the relies since the last one seems to apply in your case.

  • Why does my screen show all windows when mouse moves

    When moving the mouse my display shifts to showing all open windows.  Why is this happening all of a sudden?
    Have checked Disk Warrior and restarted, but it keeps doing this!

    What should be in each spot??
    Whatever you use the most. As an example I'm right handed to I set the button on the right to Seconday Button so I can take advantage of the menus available for going back a page, reloading a page, etc., when right clicking.
    I use the left button to switch between Applications.
    It's just a matter of what works best for you 

  • Why does Firefox create a folder "~/Download" when the "General" tab of the preferences window is selected in Linux?

    This bug exists in 3.6 (and perhaps earlier) and 4.0. Simply selecting the General preferences tab creates folder ~/Download no matter what option is currently set for the download directory.

    Try disabling hardware acceleration. Many visual bugs can be attributed to issues with graphics drivers.
    (Firefox -> Options -> Advanced -> General -> [ ] Use hardware acceleration when available)

Maybe you are looking for

  • MRS (Multi Resource Scheduling) - Displaying Planning Board

    I've gotten the MRS planning board to function the way I want it in my sandbox, for example, when I run /MRSS/PLBOTIME the all the resources show up that are in the planning node the resource planner is assigned to and all subordinate resource nodes.

  • Input data into dynamic calc in Planning forms

    Hi guys, Have someone tried to combine these two requirements: 1.     to have upper level members dynamic calc 2.     to give users the ability to input data into those upper level members through Planning forms. I need to do that in order to pass in

  • Can't uninstall adobe flash

    I am trying to install Roxio Creator on my computer and get an error message that indicates a problem with adobe flash, so I tried to update flash and that installation fails as well because it says that a newer version is already installed (it's not

  • How do I disable auto select for the path selection tool?

    For the move tool you can choose to disable auto selection, auto select a group, or auto select a layer. By default though the path selection tool autoselects a layer. How can I disable autoselection?

  • SoundBooth CS4 doesnt launch

    Here is a video of the splash screen: http://screencast.com/t/MjRlYjdkYWE It proceeds to "Importer FastMPG" and pooof, its gone. Nothing happens. Reboot does not help neither. I am using SoundBooth CS4 on Windows 7 x64 with all updates applied. Any h