Can't look at laptop screen without getting migraines - any ideas?

Hi all,
I used my last 15 inch macbook pro bought around 2007 for many hours every day without any problems before it recently gave up the ghost. I then purchased the latest 13 inch macbook pro model a couple of weeks ago.
However, it seems I can't look at my new laptop screen for more than about 10 minutes without my eyes feeling a bit odd and blurry and me ultimately getting a migraine and feeling sick, and having to lie down if I spend any longer than say half an hour at the computer. The obvious thing would be that the brightness is too high or low but i get the same result with differing brightness, and i've also tried increasing the zoom so text size is not too small, as obviously this is a smaller laptop than before.and it doesnt seem anywhere as bad with other laptop screens.
I've been to the doctors who don't seem to think there's anything medically wrong with me, has anyone else had similar problems with these macbook screens? did apple use a different technology on the screens recently that affected people?
Many thanks for any advice!!

A small minority of users suffer from severe eyestrain, headaches, and other adverse effects when using MBP screens. Theories vary widely about what is to blame: the LED backlighting (though all MBP screens have been backlit with LEDs since the first MBP models); the glossy screens in many models, including all 13" models; the brightness or dimness setting at which the screens are used, the small size of the type on high-resolution models, etc., etc. Most users have no problem with any of these things and are happy using their MBPs, but for some the screen is really a problem, and no one workaround or remedy seems to work for all of those who are uncomfortably affected.
There is an interminable thread here on this subject (or subjects, since it's possible that more than one thing is at work). You may want to read some of the posts in it for ideas about things to try:
https://discussions.apple.com/thread/1677617?start=0&tstart=0
Be aware that like most very long threads in these forums, this one contains some misinformation, many unsupported opinions and untested theories, some good information and reasonable test data, lots of ideas, a certain amount of useless complaining, a few flames, and lots of "I have the same problem!" posts that don't make it clear exactlly what problem they're taking about. You'll have to use your own good judgment about what to take from it.

Similar Messages

  • Can you look at my code and give me any idea why the pie garph doesnt show?

    Hi..
    i use beans to create an pie graph and i dont know how i can add data to it,i mean what data must be pass to it.. as u know in column and line graph there is an x-axis and y-axis and in pie there no x or y axis..i need 2 categories and one value to put on it.
    and the code is :
    CURSOR C_DETAIL IS
    SELECT REF_TYPE ,
    REF_YEAR ,
    REF_NUM ,
    ACT_DATE ,
    UNREL_PROF_LOSS , ----------------->(value)
    TO_CHAR(ACT_DATE , 'DD/ MM/ YYYY') ,----------->(Category1)
    LPAD(TO_CHAR(REF_TYPE),2,'0')||'/'||
    LPAD(TO_CHAR(REF_YEAR),2,'0')||'/'||
    LPAD(TO_CHAR(REF_NUM),6,'0') "DEAL_NUM"--------->(Category2)
    FROM BOND_ACT
    WHERE ISSUE_NUM = :KEY.ISSUE_NUM AND
    ISSUE_NUM_ABB = :KEY.ISSUE_NUM_ABB AND
    ISSUER_ID = TO_NUMBER(:KEY.ISSUER_ID ) AND
    ACT_DATE >= TO_DATE(:KEY.FROM_DATE,'J') AND
    ACT_DATE <= TO_DATE(:KEY.TO_DATE,'J') AND
    ACT_TYPE = 6
    ORDER BY REF_TYPE , REF_YEAR , REF_NUM , ACT_DATE;
    BEGIN
    set_custom_property('CHART_DISP.SIMPLEGRAPH',1,'CLEAR_GRAPH','');
    SET_CUSTOM_PROPERTY('CHART_DISP.SIMPLEGRAPH',1,'DEBUG','TRUE');
    VD := ',';
    COUNTER := 0;
    OPEN C_DETAIL;
    FETCH C_DETAIL INTO var1,var2,var3,var4,value,Category1,Category2;
    while (C_DETAIL%FOUND) LOOP
    CDATA := X||VD||'PIE GRAPH'||VD||X;                    
    set_custom_property ('CHART_DISP.SIMPLEGRAPH',1,'ADD_ROWDATA',CDATA);
    COUNTER := COUNTER +1;
    FETCH C_DETAIL INTO var1,var2,var3,var4,value,Category1,Category2;
                   END LOOP;
                             SET_CUSTOM_PROPERTY('CHART_DISP.SIMPLEGRAPH',1,'GRAPHTYPE','PIE_GRAPH');
                             SET_CUSTOM_PROPERTY('CHART_DISP.SIMPLEGRAPH',1,'COLUMNCOUNT','');
    set_custom_property('CHART_DISP.SIMPLEGRAPH',1,'ADD_DATA_TO_GRAPH','');
    CLOSE C_DETAIL;
    set_custom_property('CHART_DISP.SIMPLEGRAPH',1,'SHOW_GRAPH','');
    EXCEPTION
         WHEN OTHERS THEN
         MESSAGE('SQLCODE='||SQLCODE||SQLERRM);
         MESSAGE('SQLCODE='||SQLCODE||SQLERRM);
    end;

    Hi,
    please see the html help file (graph90.html) that comes with the Graph bean sample. The debug option is enabled with a call to set_custom_poperty('blockname.beanarea',1,'DEBUG', true)
    The messages are written to teh JInitiator console (see right bottom corner of windows to open)
    Frank

  • Can U look at my code and give me any idea why the scatter garph didnt work

    Hi,
    i use this code to create a scatter graph using bean in oracle 10g forms and it didnt show the points.. it only show an empty graph although the cursor return data..Please if anyone know whats the problem i would be so thankful.
    And here is the code:
    DECLARE
    cursor c is
    SELECT
    FRA_YEAR, -----> X
    TOTAL_AMT_IN_BASE -----------> Y
    FROM TMP_GRPH
    ORDER BY FRA_YEAR;
    cdata varchar2(2000);
    vd varchar2(2);
    X NUMBER;
    Y NUMBER;
    COUNTER NUMBER;
    cdata varchar2(2000);
    vd varchar2(2);
    X NUMBER;
    Y NUMBER;
    COUNTER NUMBER;
    BEGIN
    set_custom_property('CHART.SIMPLEGRAPH',1,'CLEAR_GRAPH','');
    SET_CUSTOM_PROPERTY('CHART.SIMPLEGRAPH',1,'DEBUG','TRUE');
    VD := ',';
    COUNTER := 0;
    OPEN C;
    FETCH C INTO X,Y;
    while (C%FOUND) LOOP
    CDATA := X||VD||X||VD||Y||VD||Y;
    set_custom_property('CHART.SIMPLEGRAPH',1,'ADD_ROWDATA',CDATA);
    FETCH C INTO X,Y;
    END LOOP;
    set_custom_property('CHART.SIMPLEGRAPH',1,'GRAPHTYPE','SCATTER_GRAPH');
    set_custom_property('CHART.SIMPLEGRAPH',1,'ADD_DATA_TO_GRAPH','');
    CLOSE C;
    set_custom_property('CHART.SIMPLEGRAPH',1,'SHOW_GRAPH','');
    EXCEPTION
    WHEN OTHERS THEN
    MESSAGE('SQLCODE='||SQLCODE||SQLERRM);
    MESSAGE('SQLCODE='||SQLCODE||SQLERRM);
    end;
    note:
    FRA_YEAR is the X-axis
    TOTAL_AMT_IN_BASE is the Y-axis
    Thanks alot
    Eyad Basheer

    Hi,
    please see the html help file (graph90.html) that comes with the Graph bean sample. The debug option is enabled with a call to set_custom_poperty('blockname.beanarea',1,'DEBUG', true)
    The messages are written to teh JInitiator console (see right bottom corner of windows to open)
    Frank

  • I downloaded a song from i-tunes.  It plays on my computer, but won't play on my i-phone.  Any suggestions on how to fix this? Or how can I re-download the song without getting charged a second time.  I could not find an option to "report a problem".

    I downloaded a song from i-tunes.  It plays on my computer, but won't play on my i-phone.  Any suggestions on how to fix this? Or how can I re-download the song without getting charged a second time.  I could not find an option to "report a problem".

    I could not find an option to "report a problem".
    Log in to the Store. Click on "Account" in your Quick Links. When you're in your Account information screen, go down to Purchase History and click "See all".
    Find the item that is not playing properly. If you can't see "Report a Problem" next to the entry, click the "Report a problem" button. Now click the "Report a Problem" link next to the item.
    (Not entirely sure what happens after you click that link, but fingers crossed it should be relatively straightforward.)

  • HT1689 can't get itunes updates on ipad, but can get everything else...genius, purchases, etc. When I select "updates" screen is blank.  Any ideas??

    Can't get itunes updates on ipad, but can get everything else...genius, purchases, etc. When I select "updates" screen is blank.  Any ideas??

    The update server is down; try this temporary workaround
    App Store>Purchased>Select "All"
    Note: Look out for apps that have the word "Update"
    http://i1224.photobucket.com/albums/ee374/Diavonex/9c256282736869f322d4b3071bbb2 a82_zps51a6f546.jpg

  • Can you replace a shattered screen without having to replace the phone?

    Can I replace a shattered screen without having to replace the phone?

    Step 1 go to amazon.com
    Step 2 type (" your idevice" screen &amp; digitizer) make sure you get the tools and adhesive.
    Step 3 buy and youtube instructions on how to do it
    It will end up costing you around $40 plus about ten minutes of work.
    ONLY TAKE YOUR iDEVICES TO APPLE FOR REPAIR IF YOU HAVE NO OTHER CHOICE, or you don't care about money...

  • Can i turn the Laptop screen off while connecting the TV?

    Dear All,
    I am connecting my Mac to TV 32'' via mini display port converted to HDMI.
    I am using it on MAC OS X 10.6.6, and on Windows 7 Ultimate SP1 also.
    when i am connecting my TV, the 2 screens are on, Laptop screen and TV screen.
    Can i turn the Laptop screen off while connecting the TV?
    how to do this on both operating systems?
    Thanks & Regards,
    Boudy,

    The quick answer is, hook up the tv to the computer, close the lid, then wake the computer up by clicking the mouse while the lid is closed. Not sure if it'll work while running windows, but I'd bet it does if you have the mac drivers installed on the win os.

  • TS3274 After using the headphones I get voice on headphones but not without them. Any ideas. Was some setting set by mistake?

    After using the headphones I get voice on headphones but not without them. Any ideas. Was some setting set by mistake?

    Eb246 wrote:
    Even the volume slider shows only with headphones in.
    That is exactly what I was trying to determine!
    I don't think that this will work but try this first.
    Reboot the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider if it appears on the screen - let go of the buttons. Let the iPad start up.
    Restoring the device may be what you will have to do, but two more things that you can try first are to restore from a backup if you have one....
    How to backup and restore from a backup
    http://support.apple.com/kb/HT1766
    If that doesn't work ....
    You can try resetting all settings. Settings>General>Reset>Reset All Settings. You will have to enter all of your device settings again.... All of the settings in the settings app will have to be re-entered.
    If none of these things work , you should probably restore the iOS software, but backup your iPad first per the instructions and restore from the backup at the end of the process.
    http://support.apple.com/kb/ht1414

  • I have iPhone 5 IOS 8.1.2; for past 13 weeks I get message that my phone has not backed up on the cloud. Every night however the wifi is on, phone is connected to power, and screen is locked. Any idea why back-up is not happening ?

    I have an iPhone 5 IOS 8.1.2;
    for the past 13 weeks I get the message that "this phone has not been backed up on the cloud". However, every night it is connected to wifi, phone is connected to power, and the screen is locked. Any idea why back-up is not happening ? By the way, I do not have the "back up now" option in Setting / iCloud.. Help anyone ?

    Try deleting an other icloud backup and see if it will automatically backup.

  • How can I eliminate the mesh screen which appears over any image I open in photoshop CS6?

    How can I eliminate the mesh screen which appears over any image I open in photoshop CS6?

    It depends, but it could either be the Grid or Pixel Grid under View>Show.

  • Hey ppl,my macbook is not booting and by that i mean u can hear the audio wave when its starting up,the screen goes white and then after a while there's a folder with a question mark in the middle of the screen...anyone,any ideea?!?

    Hey ppl,my macbook is not booting and by that i mean u can hear the audio wave when its starting up,the screen goes white and then after a while there's a folder with a question mark in the middle of the screen...anyone,any ideea?!?Regards.

    That folder with the question mark icon means that the MacBook can't find the boot directory. That can either mean it can't find the hard drive or the hard drive data is somehow corrupted.
    Put your install DVD into the drive and reboot. As soon as you hear the boot chime, hold down the "c" key on your keyboard (or the Option key until the Install Disk shows up). That will force your MacBook to boot from the optical drive.
    Once it has finished booting and you are at the Install screen launch Disk Utility from the Utilities menu. Is your Hard Drive in the list on the left?
    If it is then select the First Aid Tab run Repair Disk and if that repairs any problems run it again until the green OK appears and then run Repair Permissions.
    If your hard drive isn’t recognized in Disk Utility then your hard drive is probably dead.

  • When trying to install Epson R200 driver/utility combo, the installer gets stuck in an endless loop asking for admin password without installing. Any idea how to fix this problem?

    When trying to install Epson R200 driver/utility combo, the installer gets stuck in an endless loop asking for admin password without installing. Any idea how to fix this problem?

    Have you checked on the Epson support site? R200 support is located here.

  • My ipad is saying I have app updates to install, but won't allow me to update. The update screen is blank. Any ideas on how to fix?

    My ipad is saying I have app updates to install, but won't allow me to update. The update screen is blank. Any ideas on how to fix?

    There are a number of other threads from people reporting a problem with a blank Updates tab in the App Store app - it looks like there is a problem at Apple's end which they need to fix.
    Some posts are suggesting that you if you go into the Purchased tab in the App Store app you might be able to update the apps from there, though you will need to scroll through the list to find those with updates and individually update them.

  • I am having problems combining 2 pdf's together. When I do it crashes Acrobat XI. The files are fairly large about 20Mb each if that helps. Others have been able to combine them without issue. Any Ideas?

    I am having problems combining 2 pdf's together. When I do it crashes Acrobat XI. The files are fairly large about 20Mb each if that helps. Others have been able to combine them without issue. Any Ideas?

    My daughter has had her Razr for about 9 months now.  About two weeks ago she picked up her phone in the morning on her way to school when she noticed two cracks, both starting at the camera lens. One goes completely to the bottom and the other goes sharply to the side. She has never dropped it and me and my husband went over it with a fine tooth comb. We looked under a magnifying glass and could no find any reason for the glass to crack. Not one ding, scratch or bang. Our daughter really takes good care of her stuff, but we still wanted to make sure before we sent it in for repairs. Well we did and we got a reply from Motorola with a picture of the cracks saying this was customer abuse and that it is not covered under warranty. Even though they did not find any physical damage to back it up. Well I e-mailed them back and told them I did a little research and found pages of people having the same problems. Well I did not hear from them until I received a notice from Fed Ex that they were sending the phone back. NOT FIXED!!! I went to look up why and guess what there is no case open any more for the phone. It has been wiped clean. I put in the RMA # it comes back not found, I put in the ID #, the SN# and all comes back not found. Yet a day earlier all the info was there. I know there is a lot more people like me and all of you, but they just don't want to be bothered so they pay to have it fix, just to have it do it again. Unless they have found the problem and only fixing it on a customer pay only set up. I am furious and will not be recommending this phone to anyone. And to think I was considering this phone for my next up grade! NOT!!!!

  • I have a CC subscription for Lightroom and purchased the upgrade for my standalone Ver. 5 to Ver. 6, but I can't install the standalone upgrade. Anyone have any idea how to do it?

    I have a CC subscription for Lightroom and purchased the upgrade for my standalone Ver. 5 to Ver. 6, but I can't install the standalone upgrade. Anyone have any idea how to do it?

    sjrozas wrote:
    I'm only trying out the subscription. Thanks for being so concerned about my finances.
    Sent from my mobile.
    Your initial post indicated that you had a CC subscription. That seems to imply that you have subscribed. If you hadn't already purchased Lightroom 6 I would suggest that you wait until you decide about CC. You really don't need both because the Lightroom program is precisely the same except for Lightroom 6 without the creative cloud has no Lightroom mobile capabilities. But I was only trying to help.

Maybe you are looking for

  • Error while creating web proxy

    Hi, I've created a web service in ProjectsManagement workspace (jws). Now, I'm trying to invoke that service from ProjectsFinancialsEss workspace (jws) by creating a web-proxy. However, I'm getting the following error when I'm creating the web-proxy:

  • 10g fails to run on Mac OS X 10.3.8: OracleCRS is a directory

    Hi, I have had no luck installing Oracle 10g on a Mac OS X Server (running 10.3.8). I followed the instructions in the Quick installation guide religiously and everything works, until the very last moment when the services are supposed to be launched

  • Connecting to non-secure listener port over TCPS

    Hi, I am trying to connect to non-SSL port over TCPS. When I use tnsping, it hangs. When I do an OCIServerAttach, it hangs. Client is 10.2 And Database server is 9.2 and higher.. Any way I can find out why this is happening?? -Harsha

  • Replication of product master and Product category

    Hi Please let me know steps involved in replicating Product master and product category from R/3 to SRM Regards Ashish

  • Install JAVA add-in for ABAP problem.

    Hello. I tried to install java Add-in for ABAP on SAP NetWeaver 7.0 Support Release3. (OS : AIX 5.3 , database : DB2) The installation of phase "Central Service Instance (SCS) Java Add-in" and "Database instance Java Add-in" is complete But in the la