My Display is getting brighter and darker during use

Hi everybody,
my display is getting brighter and darker while using the computer. Do you know if this is a problem pple knows about?
Thank you for your help
Ulli805 (Germany)

Welcome to Apple Support Communities
The Mac sets up the brightness automatically. Go to System Preferences > Display and deactivate Automatically adjust brightness

Similar Messages

  • Ipod touch 4g screen gets brighter and darker and it just does randomly

    screen gets brighter and darker randomly

    Go to Settings>General Wallpaper and Brightness and turn off Auto Brightness.
    Next:
    - 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              

  • Bright and Darker Commands.

    Hello
    I have a problem with my brighter() and darker commands.
    In my program I have a paint like idea and I have 2 buttons at the top that have "+" and "-" on them just under the selected colour but my idea was to make the colour brighter and darker depending on how many times you clicked it but it is not working. plz someone help me.
    here is my program so far. By the way this is not commented or nearly done just hung up on this brighter and darker commands.
    // The "Mouse" class.
    import java.applet.*;
    import java.awt.*;
    import java.awt.event.*;
    public class Mouse extends Applet implements MouseListener, MouseMotionListener
    Graphics g;
    int x, y, x1, y1, check;
    Label tools;
    Button [] b = new Button [13];
    Button pencil, rect, circle, fillrect, fillcircle, spray, light, dark;
    Button backdrop;
    String col;
    Panel Box, display;
    Graphics bg;
    public void init ()
    check = 0;
    setLayout (null);
    setBackground (Color.gray);
    Box = new Panel ();
    Box.setSize (460, 400);
    Box.setLocation (20, 80);
    Box.setBackground (Color.white);
    add (Box);
    g = Box.getGraphics ();
    Box.addMouseMotionListener (this);
    Box.addMouseListener (this);
    display = new Panel ();
    display.setSize (30, 30);
    display.setLocation (5, 5);
    display.setBackground (Color.black);
    add (display);
    for (int i = 0 ; i < 13 ; i++) // Array of Colour Buttons
    b = new Button (" ");
    b [i].setSize (20, 20);
    b [i].setLocation (40 + i * 20, 10);
    add (b [i]);
    pencil = new Button ("" + (char) 183);
    bg = pencil.getGraphics ();
    pencil.setSize (20, 20);
    pencil.setLocation (315, 25);
    add (pencil);
    rect = new Button ("" + (char) 55555);
    rect.setSize (20, 20);
    rect.setLocation (335, 25);
    add (rect);
    circle = new Button ("O");
    circle.setSize (20, 20);
    circle.setLocation (375, 25);
    add (circle);
    fillrect = new Button ("" + (char) 55555);
    fillrect.setSize (20, 20);
    fillrect.setLocation (355, 25);
    add (fillrect);
    fillcircle = new Button ("" + (char) 216);
    fillcircle.setSize (20, 20);
    fillcircle.setLocation (395, 25);
    add (fillcircle);
    spray = new Button ("*");
    spray.setSize (20, 20);
    spray.setLocation (415, 25);
    add (spray);
    light = new Button ("+");
    light.setSize (15, 15);
    light.setLocation (5, 36);
    add (light);
    dark = new Button ("-");
    dark.setSize (15, 15);
    dark.setLocation (20, 36);
    add (dark);
    backdrop = new Button (" Set Backround ");
    backdrop.setSize (100, 20);
    backdrop.setLocation (45, 55);
    add (backdrop);
    tools = new Label (" Tools ");
    tools.setSize (35, 20);
    tools.setLocation (310, 5);
    add (tools);
    b [0].setBackground (Color.black);
    b [1].setBackground (Color.red);
    b [2].setBackground (Color.blue);
    b [3].setBackground (Color.green);
    b [4].setBackground (Color.yellow);
    b [5].setBackground (Color.pink);
    b [6].setBackground (Color.orange);
    b [7].setBackground (Color.white);
    b [8].setBackground (Color.cyan);
    b [9].setBackground (Color.gray);
    b [10].setBackground (Color.lightGray);
    b [11].setBackground (Color.magenta);
    b [12].setBackground (Color.darkGray);
    public boolean action (Event e, Object o)
    if (e.target == b [0])
    g.setColor (Color.black);
    display.setBackground (Color.black);
    if (e.target == b [1])
    g.setColor (Color.red);
    display.setBackground (Color.red);
    if (e.target == b [2])
    g.setColor (Color.blue);
    display.setBackground (Color.blue);
    if (e.target == b [3])
    g.setColor (Color.green);
    display.setBackground (Color.green);
    if (e.target == b [4])
    g.setColor (Color.yellow);
    display.setBackground (Color.yellow);
    if (e.target == b [5])
    g.setColor (Color.pink);
    display.setBackground (Color.pink);
    if (e.target == b [6])
    g.setColor (Color.orange);
    display.setBackground (Color.orange);
    if (e.target == b [7])
    g.setColor (Color.white);
    display.setBackground (Color.white);
    if (e.target == b [8])
    g.setColor (Color.cyan);
    display.setBackground (Color.cyan);
    if (e.target == b [9])
    g.setColor (Color.gray);
    display.setBackground (Color.gray);
    if (e.target == b [10])
    g.setColor (Color.lightGray);
    display.setBackground (Color.lightGray);
    if (e.target == b [11])
    g.setColor (Color.magenta);
    display.setBackground (Color.magenta);
    if (e.target == b [12])
    g.setColor (Color.darkGray);
    display.setBackground (Color.darkGray);
    if (e.target == pencil)
    check = 1;
    if (e.target == rect)
    check = 2;
    if (e.target == fillrect)
    check = 3;
    if (e.target == circle)
    check = 4;
    if (e.target == fillcircle)
    check = 5;
    if (e.target == light)
    g.getColor ();
    if (e.target == backdrop)
    g.fillRect (0, 0, 460, 400);
    return true;
    public void mouseMoved (MouseEvent e)
    public void mouseDragged (MouseEvent e)
    if (check == 1)
    g.drawLine (e.getX (), e.getY (), x, y);
    x = e.getX ();
    y = e.getY ();
    public void mouseClicked (MouseEvent e)
    public void mousePressed (MouseEvent e)
    if (check == 1)
    x = e.getX ();
    y = e.getY ();
    if (check == 2)
    x1 = e.getX ();
    y1 = e.getY ();
    g.fillOval (x1, y1, 1, 1);
    if (check == 3)
    x1 = e.getX ();
    y1 = e.getY ();
    g.fillOval (x1, y1, 1, 1);
    if (check == 4)
    x1 = e.getX ();
    y1 = e.getY ();
    if (check == 5)
    x1 = e.getX ();
    y1 = e.getY ();
    public void mouseReleased (MouseEvent e)
    if (check == 2)
    g.drawRect (x1, y1, e.getX () - x1, e.getY () - y1);
    if (check == 3)
    g.fillRect (x1, y1, e.getX () - x1, e.getY () - y1);
    if (check == 4)
    g.drawOval (x1, y1, e.getX () - x1, e.getY () - y1);
    if (check == 5)
    g.fillOval (x1, y1, e.getX () - x1, e.getY () - y1);
    public void mouseEntered (MouseEvent e)
    public void mouseExited (MouseEvent e)

    Hi and welcome,
    there is a  Energymanagement  S205 EM 6.0.16 , newer than factory pre-installed available ,  try this one ...
    by the way did you know that you can choose german section of lenovo community
    sincerely KalvinKlein
    Thinkies 2x X200s/X301 8GB 256GB SSD @ Win 7 64
    Ideas Centre A520 ,Yoga 2 256GB SSD,Yoga 2 tablet @ Win 8.1

  • [svn] 3347: -remove the javascript directory since it is getting cleaned and recreated during the build process .

    Revision: 3347
    Author: [email protected]
    Date: 2008-09-25 06:27:28 -0700 (Thu, 25 Sep 2008)
    Log Message:
    -remove the javascript directory since it is getting cleaned and recreated during the build process.
    -this should make SVN happy and get the builds working again
    Removed Paths:
    flex/sdk/trunk/frameworks/javascript/FABridge/samples/srcview/source/fabridge/javascript/

    - Where? That depends upon what you what. But, going by the letter of what you asked, you shouldn't deploy any applications or packages if you want them on your newly images systems, you should make them a part of the TS using Install Software and Install
    Application tasks.
    - How many times? You should only need one although depending upon what you are deploying and if you are using offline updates, some folks add more. I typically use two one right after the Setup Windows and ConfigMgr task (just like the task sequence wizard
    builds for you) to update the OS and "things" in the image and one at the end to catch additional updates for apps and components added during the TS. Note that you also have to initiate an update scan cycle for additional install update tasks to work. Do
    this by adding a run-command line task before the second Install Updates task with the proper WMIC incantation.
    - Offline Updates only injects CBS updates into the image which are typically just core OS updates. You should also update your image though to include non-CBS updates. Using a build and catpure task sequence makes this easy.
    Jason | http://blog.configmgrftw.com

  • I connected my iphone 3g to itunes which was in 4.1 firmware and itunes ask for an update which i downloaded an updated the phone to version 6.1.3 but my phone cannot start it shows no service my sim card is not getting network and i cannot use the phone.

    i connected my iphone 3g to itunes which was in 4.1 firmware and itunes ask for an update which i downloaded an updated the phone to version 6.1.3 but my phone cannot start it shows no service my sim card is not getting network and i cannot use the phone. what should i do.?

    First, you do not have a 3G if you could upgrade it to 6.1.3, because 4.2.1 is the last version that will work on the 3G. So you either have a 3GS or you somehow hacked the phone to install an incompatible version. You can check the model you have by entering your serial number here: https://selfsolve.apple.com/agreementWarrantyDynamic.do
    Assuming you have a 3GS the most likely reason for your problem is you have a gray market phone that was hacked or jailbroken to unlock it. When you upgraded it you removed the hack, so the phone is now locked to its original carrier.

  • Cant download Adobe Air and Update Photoshop Elemente 9 keep getting Error and now cant use Organize

    Cant download Adobe Air and Update Photoshop elements 9 keep getting Error and not cant use organizer

    What is your operating system & version?
    What exactly means "cant"?  And what is the error you get?

  • Are you still able to get apps and games that use the 4.2.1 version?

    are you still able to get apps and games that use the 4.2.1 verson on a second generation ipod touch?

    Yes. To more easily find compatible apps:
    iOSSearch - search the iTunes store for compatible apps.
    Vintapps 3.1.3 - paid app.
    Apple Club - filter apps by iOS version.

  • When i scrolling down/up in safari the display gets brighter and blurs little bit!(macbook pro 2012, 3days old)

    when i scrolling down/up in safari and firefox the display gets brighter (for instance when the screen and texts in a page is blue it gets light blue and little blurs by scrolling) and when i stop scrolling the screen gets plain.

    If it is only blurring on the words and not the stationary dock then it is because the screen does not have a great response time. 

  • IMac G5 17-inch display slowly getting brighter

    I have a 3-year old iMac G5. The 17" display is slowly getting a brighter and brighter white point and is noticeably blowing away subtle lighter colors. Adjusting brightness or recalibrating the monitor doesn't seem to work. Is there a way to fix this?

    I have not read anything similar to your post here at the Apple forum...
    You can try resetting your Display to Factory settings... Utilites > ColorSnyc Utility > Devices > toggle Display > iMac > Current Profile: Set to Factory - this should set your display as orginal, now you can go into System Preferences and calibrate a profile display to your liking...
    You should also take a look at the Repair Extensions here: http://www.apple.com/support/exchange_repair/imac.html
    Resetting the SMU: http://docs.info.apple.com/article.html?artnum=301733 - this does resolve certain video issues
    Rick

  • How to get Aperture and iPhoto to use Pentax *ist DL RAW images natively

    Using some techniques that I found in various places in these forums, I am going to give step-by-step instructions to get Aperture and iPhoto to recognize Pentax *ist DL RAW images natively.
    Note: This worked for me using 10.4.6 with the latest iPhoto 06 and Aperture updates. I do NOT know if this will work on older versions of OS X, iPhoto, or Aperture.
    Note: If you also use a Pentax *ist DS camera, these instructions will probably disable support for that particular device due to the modifications made to a system file. Only complete these instructions if you want to use a *ist DL camera.
    ** These instructions involve modifying system level files using a HEX editor. If you are not comfortable with this, do NOT attempt to do this or you could kill your system. Remember, BACKUP BACKUP BACKUP. These steps worked great for me but follow at your own risk!! **
    Ok, lets begin...
    1) Download this great patch by macintosh_tech
    http://idisk.mac.com/macintosh_tech-Public
    This patch contains an updated raw.plist file which includes the RAW information for the *ist DL. This patch also contains an updated libRaw.dylib file and an updated Raw Presets file for Aperture.
    ** Do NOT copy the libRaw.dylib file from this patch to the folder listed in the patch Read_Me. This file did not work on my Intel-based Mac and crashed my system!!
    I was able to modify my original libRaw.dylib file using a HEX editor to get it to work on my system. Instructions for this modification will follow.
    2) Open the .dmg of the patch in a Finder window
    3) Open a new finder window and browse to /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ImageIO.fra mework/Resources
    *4) Backup the libRaw.dylib and Raw.plist files. Copy them to a safe location. For extra safety, you can just copy the whole Resources folder to a safe location (Make sure that you COPY it and dont MOVE it)*
    5) Right-click the libRaw.dylib file and select "Get Info". Look at the bottom of the info window and expand the "Ownership & Permissions" tab. In this section, expand the "Details" tab. If the lock icon is in the locked position, click it to unlock it. Change "Owner" to your user name. If requested, enter your system password at this point. Close the info window. This step lets you modify the libRaw.dylib file.
    6) Complete step 5 for the Raw.plist file.
    7) Copy the Raw.plist file from the "Place In System Folder" folder from the patch to the Resources folder. It will ask you if you wnt to overwrite the existing file. Click "Replace".
    8) Open a new finder window and browse to the /Users/YOURUSERNAME/Library/Application Support/Aperture/ folder.
    * 9) Backup the "Raw Decode Presets.plist" file *
    10) Copy the "Raw Decode Presets.plist" file from the "Place In Home Directory" folder from the patch to the /Users/YOURUSERNAME/Library/Application Support/Aperture/ folder. Click "replace" if it asks you.
    11) Here's the tricky part. Download a HEX editor if you don't have one. I used 0xED. It is free and can be downloaded from
    http://www.versiontracker.com/dyn/moreinfo/macosx/29521
    12) Open the libRaw.dylib file from the Resources folder in your HEX editor.
    Note: This is your original libRaw.dylib file from your /System/Library/...../Resources/ folder, NOT the file from the patch.
    Use the Find function and search for the string "Pentax *ist DS". Make sure you are using "Search Type: Text" (or equivilent in your editor) and that you use proper case. When you find this string, change the "S" in the "DS" to an "L". The string should now look like "Pentax *ist DL". Use the "Find Next" function to find the next instance of "Pentax *ist DS". Again, change the "S" to an "L". There should be two total instances that you need to change. Save the file and exit the editor.
    13) Open Disk Utility and repair permissions. This will set the raw.plist and libRaw.dylib files back to their original permissions.
    14) Reboot the system.
    15) You should now be able to view .PEF files natively in Aperture and iPhoto. I appologize in advance for any typos. Let me know how this works, as this is my first tutorial of this nature.
    Macbook 2.0   Mac OS X (10.4.6)  

    It would appear that my last post was a moot point as the 10.4.7 update adds support for the *ist DL. It's nice to have it biult into the operating system now.

  • Vedio skips and freezes during use of MLB OR HBO-GO

    WATCHING A MLB BASEBALL GAME THE VIDEO SKIPS AND FREEZES DURING THE ENTIRE GAME
    DOES THE SAME WHILE WATCHING HBO-GO

    Please check if other users have the same problem when you colleague share his desktop with them.
    Mostly this is related the computer or the Lync client.
    Please try to use the Lync 2010 to do the sharing.
    Check the resource consumed when you take the remote control.
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • Desktop display randomly getting smaller and moving to the upper left of the screen.

    Hi all.
    I am hoping someone can shed some light on an issue I've been expierencing. I have scoured the web and have been unable to find much, if anything, in way of solutions. 
    All little difficult to describe, but I will include a pic as well as a visual.
    We are using some Q180's as media players for digital signage. For the most part they have all been working fine except for 2. Randomaly, the signage presentation will re-size itself and move into the upper left corner. This happens randomly and not at the same times each day. They are hooked up to a LED tv via HDMI. I have tried switiching the HDMI cables, ensuring all drivers are current and tried most all the basic troubleshooting. 
    A simple re-start will get everything back looking and running fine. Again, this is a digital signage application so we cannot tell if this has occured until the client calls to let us know which is not good for us. 
    I do apologize if this is not too clear of a description. Please refer to the image for a visual. Also, please feel free to ask me any questions you think may help you. 
    Link to image
    I appreciate your advice. 
    Thanks!
    Moderator comment: Image(s) >50KB converted to link(s). Community Rules.

    Yes.. someone else!!
    https://discussions.apple.com/message/23709687#23709687
    https://discussions.apple.com/message/23743246#23743246
    I found if you adjust the refresh rate (in display settings) then back again it stopps snapping.
    Do you all have an AOC monitor connected by HDMI?

  • Ipod with "apple" on it alternates between bright and dark - can't reset?

    I have a 5th generation ipod (30gig) and I just downloaded the most recent (March 23rd) software update.
    The screen (with the apple logo in the middle) goes from "light" to "dark" and when it goes to dark the ipod sounds like it wants to close down but it doesn't. It just continues in this bright/dark sequence.
    I've tried resetting to no avail.
    Can anyone suggest how I deal with this
    Thanks

    The previous owner/user must do this.
    iCloud: Activation Lock
    http://support.apple.com/kb/PH13695
    Find My iPhone Activation Lock: Removing a device from a previous owner’s account
    http://support.apple.com/kb/TS4515
    iCloud: Find My iPhone Activation Lock in iOS 7
    http://support.apple.com/kb/HT5818
     Cheers, Tom

  • Backlight alternating bright and dark spots

    Just a few days ago my backlight started acting weird and now I have these dark and bright spots at the bottom of the screen. I went into system preferences and turned my auto adjust brightness off thinking that might be the problem, however, the screen still has the same problem.. I have attached a picture of what my screen looks like.. I am operating on system 10.7.5

    You have to take the computer to the Apple store to have it checked out.
    Best.

  • Since installing the latest update firefox stops responding and hangs during use.

    The only way I can get it to work is to shut it down and restart the application. I can open IE and access the sites which don't respond so it is definately a firefox problem. All firefox tabs stop responding including downloads. This is occurring every 2nd or 3rd page I open. Help - it's driving me insane!

    See:
    * http://kb.mozillazine.org/Firefox_crashes
    * https://support.mozilla.com/kb/Firefox+crashes

Maybe you are looking for