Dark band down the right edge of screen ? (17" MBP)

I'm afraid I'm being nitpicky after seeing all those other serious problems, but I'm curious. Let me know if I'm being a nit picker.
On my new 17" MBP (early 2009) with the glossy panel, there is a band of dark area (about 1 inch wide) down the right edge of the screen. It's more noticeable because it then gets brighter 1/4 inch from the edge. It's not that bad... and I doubt that it'd show up in a picture if I were to take one. But it's plainly noticeable when I set the desktop to a solid color.
Is that to be expected? Do you also notice it? I was hoping that uniformity would be better with LED backlighting. Or is this a uniformity issue?

hello,
no i don't think that is being too picky. sounds like a display defect, and it could get worse over time. i think you should take it back.
regards,

Similar Messages

  • Hp Color LaserJet CP2025n printing a yellow band down the right hand side,

    I have a Hp Color LaserJet CP2025n running on a Desk top computer OS win 7 64bit, printer Serial Number [edited Serial Number by Moderator] and another number on the label CB494A, The printer has started printing a yellow band 1.5 cm wide all the way down the right hand side of the page, any ideas or suggestions much appriciated.

    @T4011 
    ‎Thank you for using HP Support Forum. I have brought your issue to the appropriate team within HP. They will likely request information from you in order to look up your case details or product serial number. Please look for a private message from an identified HP contact. Additionally, keep in mind not to publicly post ( serial numbers and case details).
    If you are unfamiliar with the Forum's private messaging please click here to learn more.
    Thank you,
    Omar
    I Work for HP

  • Desktop appearance problem:  For no apparent reason my Mac running OSX 10.4.11 imposed a mesh-like pattern over the folders on my desktop and also across the top of the screen and down the right-hand side where I have the dock.  How do I remove it?

    For no apparent reason my Mac (2 GHz PowerPC G5) running 10.4.11 has put a mesh-like pattern over the folders on my desktop and also a band of the same pattern across the top of the screen and down the right-hand side over the dock.  (See screen grabs below.)
    It doesn't affect any operations but makes folder names and drop-down menus difficult to read through the pattern.
    I'm not aware of changing any settings so suspect I must have clicked on something without noticing.  How do I get rid of the overlaid pattern, please?

    Information about my computer is as follows:
    Machine Name:          iMac G5
    Machine Model:          PowerMac8,2
    CPU Type:          PowerPC G5  (3.1)
    Number Of CPUs:          1
    CPU Speed:          2 GHz
    L2 Cache (per CPU):          512 KB
    Memory:          1 GB
    Bus Speed:          667 MHz
    Boot ROM Version:          5.2.5f1
    It looks like this at the back:

  • I can't take a video in camera mode.  I have the words video, camera and square down the right hand side of screen but cannot activate video? Any ideas?

    I can't take a video in camera mode.  I have the words video, camera and square down the right hand side of screen but cannot activate video? Any ideas?

    Swipe up or down to select options.

  • CSS Drop down menu; how to align the right edge of drop down and parent menu?

    Hello everyone,
    I have a drop-down menu that is currently working well.
    The only change I need to make is to have the right edge of the  drop-down menu to align with the right edge of the parent menu. When you  hover over the menu, it currently "drops" down and to the right, with  the left edges aligned.
    I want the menu to "drop" down and to the left, so the right edges are aligned.
    I have tried fiddling with floats and absolute/relative positioning. I'm not sure what needs to be changed.
    Any help you can provide is greatly appreciated! I'm learning via "cut and paste", so please go easy on any terminology you may use.
    Thank you!
    Here is my code:
    .chromestyle{
         width: 100%;
         font-weight: bold;
         float: left;
         height: 29px;
    .chromestyle:after{ /*Add margin between menu and rest of content in Firefox*/
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
    .chromestyle ul{
    border: 0px solid #BBB;
    width: 100%;
    background: url(chromebg.gif) center center repeat-x; /*THEME CHANGE HERE*/
    padding: 4px 0;
    margin: 0;
    text-align: right; /*set value to "left", "center", or "right"*/
    .chromestyle ul li{
    display: inline;
    .chromestyle ul li a{
    color: #000000;
    padding: 4px 7px;
    margin: 0;
    text-decoration: none;
    border-left: 1px solid #DADADA;
    .chromestyle ul li a:hover, .chromestyle ul li a.selected{ /*script dynamically adds a class of "selected" to the current active menu item*/
    background: url(chromebg-over.gif) center center repeat-x; /*THEME CHANGE HERE*/
    /* ######### Style for Drop Down Menu ######### */
    .dropmenudiv{
    position:absolute;
    top: 0;
    border: 1px solid #BBB; /*THEME CHANGE HERE*/
    border-bottom-width: 0;
    font:normal 12px Verdana;
    line-height:18px;
    z-index:100;
    background-color: white;
    width: 200px;
    visibility: hidden;
    .dropmenudiv a{
    width: auto;
    display: block;
    text-indent: 3px;
    border-bottom: 1px solid #BBB; /*THEME CHANGE HERE*/
    padding: 2px 5px;
    text-decoration: none;
    font-weight: bold;
    color: black;
    * html .dropmenudiv a{ /*IE only hack*/
    width: 100%;
    .dropmenudiv a:hover{ /*THEME CHANGE HERE*/
    background-color: #0000ff;
    color: #fff200;

    Try this:
    .chromestyle{
         font-weight: bold;
         height: 29px;
    .chromestyle:after{ /*Add margin between menu and rest of content in Firefox*/
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
    .chromestyle ul{
    border: 0px solid #BBB;
    width:100%;
    background: url(chromebg.gif) center center repeat-x; /*THEME CHANGE HERE*/
    padding: 4px 0;
    margin: 0;
    text-align: left; /*set value to "left", "center", or "right"*/
    .chromestyle ul li{
    display: inline;
    .chromestyle ul li a{
    color: #000000;
    padding: 4px 7px;
    margin: 0;
    text-decoration: none;
    border-left: 1px solid #DADADA;
    .chromestyle ul li a:hover, .chromestyle ul li a.selected{ /*script dynamically adds a class of "selected" to the current active menu item*/
    background: url(chromebg-over.gif) center center repeat-x; /*THEME CHANGE HERE*/
    /* ######### Style for Drop Down Menu ######### */
    .dropmenudiv{
    position:absolute;
    top: 0;
    border: 1px solid #BBB; /*THEME CHANGE HERE*/
    border-bottom-width: 0;
    font:normal 12px Verdana;
    line-height:18px;
    z-index:100;
    background-color: white;
    visibility: hidden;
    text-align:left;
    .dropmenudiv a{
    width: auto;
    display: block;
    border-bottom: 1px solid #BBB; /*THEME CHANGE HERE*/
    padding: 3px;
    text-decoration: none;
    font-weight: bold;
    color: black;
    * html .dropmenudiv a{ /*IE only hack*/
    width: 100%;
    .dropmenudiv a:hover{ /*THEME CHANGE HERE*/
    background-color: #0000ff;
    color: #fff200;
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb

  • Weird line on the right edge of the screen with fglrx and KDE Plasma

    Hey there,
    I am using an AMD Radeon R9 280X with the fglrx driver for my 2-monitor setup: One 1366x768 monitor on the left side, one 1920x1080 monitor on the right side. My current DE is Plasma with KDE 5, but the bug also existed (though not as bad) with Cinnamon.
    Now to the problem: On the right edge of the screen is the 2-pixel-width vertical line currently in grey, which even exist in full-screen applications.
    On Cinnamon the situation is a little bit different: Here it only appears sometimes, but then it flashes frequently, though full-screen applications cover it.
    Interestingly I can hover my mouse pointer over it.
    Here are two screenshots: One with the whole line and one showing the above described.
    I configured my screens with amdccle and/or the KDE 5 display manager. Here's the generated xorg.conf:
    Section "ServerLayout"
    Identifier "amdcccle Layout"
    EndSection
    Section "Files"
    FontPath "/usr/share/fonts/adobe-source-sans-pro/"
    FontPath "/usr/share/fonts/cyrillic/"
    EndSection
    Section "Module"
    EndSection
    Section "ServerFlags"
    Option "Xinerama" "off"
    Option "RandR" "on"
    EndSection
    Section "Monitor"
    Identifier "DFP6"
    Option "VendorName" "ATI Proprietary Driver"
    Option "ModelName" "Generic Autodetecting Monitor"
    Option "DPMS" "true"
    Option "Primary" "true"
    EndSection
    Section "Monitor"
    Identifier "DFP7"
    Option "VendorName" "ATI Proprietary Driver"
    Option "ModelName" "Generic Autodetecting Monitor"
    Option "DPMS" "true"
    Option "LeftOf" "DFP6"
    EndSection
    Section "Monitor"
    Identifier "0-DFP6"
    Option "VendorName" "ATI Proprietary Driver"
    Option "ModelName" "Generic Autodetecting Monitor"
    Option "DPMS" "true"
    Option "PreferredMode" "1920x1080"
    Option "TargetRefresh" "60"
    Option "Position" "1366 0"
    Option "Rotate" "normal"
    Option "Disable" "false"
    Option "Primary" "true"
    EndSection
    Section "Monitor"
    Identifier "0-DFP7"
    Option "VendorName" "ATI Proprietary Driver"
    Option "ModelName" "Generic Autodetecting Monitor"
    Option "DPMS" "true"
    Option "PreferredMode" "1366x768"
    Option "TargetRefresh" "60"
    Option "Position" "0 312"
    Option "Rotate" "normal"
    Option "Disable" "false"
    EndSection
    Section "Device"
    Identifier "aticonfig-Device[0]-0"
    Driver "fglrx"
    Option "Monitor-DFP6" "0-DFP6"
    Option "Monitor-DFP7" "0-DFP7"
    BusID "PCI:1:0:0"
    EndSection
    Thanks for any help in advance
    Last edited by Quanttek (2015-05-03 12:57:23)

    ewaller wrote:Now that it interesting    This only happens on the big screen?
    Yes, this only happens on the big screen
    ewaller wrote:Not that it matters (as the full screen display overwrites it), but what type of interface is it?  HDMI, VGA?
    DVI
    ewaller wrote:What does the display report as its current resolution in the on screen menu?
    It reports 1920x1080 as it's current resolution
    As a test I changed the resolution to 1400x1050 in the KDE menu, but the monitor reports it as 1680x1050. Though the bug still persists.
    ewaller wrote:What effects to you use in KDE?  Although this is mitigated by your having had the problem with Cinnamon
    I use the standard configuration of effects in KDE. But the bug persists even when I turn off compositing.
    There is a small difference in the bug between Cinnamon and KDE: First off the line has a smaller width in Cinnamon and full-screen applications covered it.
    Also it isn't an offset per se off the whole X screen, but instead only of the KDE/Cinnamon "workspace".  E.g. windows snap with the line, but behind the flickering you can still see the current window, e.g. when moved to the right.
    (Sorry for not answering for so long)
    EDIT: Also the flickering gets more extreme the smaller the reosultion was I changed to inbetween http://i.imgur.com/WQ4fkmf.jpg
    Last edited by Quanttek (2015-05-02 18:21:23)

  • My iphone  screen has gone white with a few grey lines down the right hand side.. Has anyone any ideas how I can solve this and get my screen back to normal..? Thanks

    my iphone screen has gone white with a few grey lines down the right hand side.. Has anyone any idea how I can solve this and get my screen back to normal..? Thanks

    Hi tag71,
    If you are having issues with the display on your iPhone, you may find the Display portion of the following article helpful:
    iPhone: Hardware troubleshooting
    http://support.apple.com/kb/ts2802
    Regards,
    - Brenden

  • My early 2011 MacBook Pro 15" non-glare display has developed a dark band at the edges of the screen approximately the same width as the aluminum surround. This wasn't present when the MBP was new. Am near an Apple Store, but anyone else had this problem

    My early 2011 MacBook Pro 15" non-glare display has developed a dark band at the edges of the screen approximately the same width as the aluminum surround. This wasn't present when the MBP was new. I'm near an Apple Store and can take the laptop in, but has anyone else had this problem?

    Thanks for your input. I didn't completely flesh out what I'm seeing visually. The resolution settings are all correct for my screen. The problem is if, say, looking at the gray startup screens or a completely white full-screen image, there is a perimeter of graying, almost as if the LEDs are somehow not as bright as the rest. It's also curious that the thickness of this phenomenon is almost exactly the same as the metal bezel around the display. I will be taking it to an Apple Store for a look, as I'm also having several minor hardware problems that need to be addressed and remedied.

  • Get rid of intrusive HUGE and UGLY dark bands behind HUGE icons on Home Screen

    How do I get rid of the intrusive, huge and ugly dark bands behind the huge icons, and reduce the size of the icons on the Home Screen?
    On my 8320 I can use pictures of my kids for wallpaper. On the 8900 they have wasted half of the beautiful screen with these huge ugly icons and dark bands - cuts right through two of my kids eyes and two of my kids mouths and below.
    What were they thinking? They advertise the 8900 (and the 8520) by emphasizing a full screen picture - but when you actulally buy the phones, they have inserted these cursed screenscape hogs. Any firmware fixes yet? Or, now that Nokia has released their E71 that not only handles email as well as my BB, but also allows me to create and edit docx, should I abandon the 8900 as a lost cause and buy the E71? And, as long as we are discussing RIM's myopic short sightedness, why no 3G on this device?
    Please hurry, my buyers remorse clock is ticking and I need to send this thing back to the carrier if it can't be fixed.
    Thanks in advance.

    Hello, to change the size (I have six icons per row not five) go to options>advanced options>accessability and change the amount on the grid. Default 6x6, then 4x4 3x3 etc., you can also change the colours. Hope I`m not barking up the wrong tree but have bbn of help! Regards Kew

  • I have a white vertical line down the right side of my internal brand new macbook pro 13" display

    I have a white vertical line down the right side of my internal brand new macbook pro 13" display. I've done the following:
    -Shutdown the computer, and restarted in Safe Mode by pressing the Shift key after the restart tone
    -Shutdown the computer, and restarted by pressing Command, Option, P & R after the restart tone
    -Checked display resolution, Best for Retina
    -Hooked it up to a Dell external monitor and via projection to screen. There are no lines on the external or secondary screens
    -Just curious, I ran a color utility which can not repair 4 items, maybe this is another issue.
    This is a brand new Macbook Pro, just out of the box. It was fine for two days without any issues, fine last night while in use, opened it up this morning with the line.
    Anyone now how I can fix this on my own?
    Details atta
    <Edited by Host>

    If you are within the first 14 days from the date of purchase, return the MBP for a refund or an exchange.  If you are after the first 14 days of the date of purchase, have the MBP repaired under the warranty provisions.
    Ciao.

  • Why would I get a bright green vertical line down the center of my screen after playing a game?

    Why would I get a bright green vertical line down the middle of my screen after playing a game?

    Hi @DustMidnight85 
    Welcome to the HP Forums!
    It is a wonderful  place to find answers and  information!
    For you to have the best experience in the HP forum I would like to direct your attention to the HP Forums Guide Learn How to Post and More
    I grasp that you are having an issue with the display but if you adjust the position of the display it disappears.
    Here is a link to Display Quality Issues that may help.
    As you stated it goes away when you reposition the display the connection cable may have become  loose or damaged from opening and closing the display.
    Here is a link to the  HP Pavilion 14 Notebook PC, HP Pavilion 14 Touchsmart Notebook PC, HP Pavilion 14 Touchsmart Ultrabo.... Chapter 4 page 36 has removal instructions that may assist you in checking for that problem.
    If your notebook is in warranty or you would like help please contact HP support for assistance.
    Please call our technical support at 800 474 6836. If you live outside the US/Canada Region, please click the link below to get a support number for your region.
    World Wide Phone Support
    Best of Luck!
    Sparkles1
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the bottom right to say “Thanks” for helping!

  • Align select dropdown menu on the right edge of parent box

    Hello,
    I was wondering if you can help me about an issue i have with Firefox browser.
    I'm designing a webpage and i have a "<select>" menu with numerous options.
    On Firefox the left edge of the dropdown menu aligns to the left edge of the
    parent "<select>" box whereas in other browsers (Chrome, IE) aligns to the right.
    The entire menu, is located on the right edge of my page
    The result is when the innertext of an option is very long,
    exceeds the margins of the page and is cut.
    Is there any hidden option (css-fix), so that i could make dropdown menu align to
    the right of the parent box , just like other browsers?
    (I have some screenshots of the menu, but i don't know where to post them)
    Thank you in advance!

    Could you post your Screenshot and code.
    There is "browse" icon above POST REPLY button, it helps to add your image.

  • Call bar is now vertical on the right side of screen. How do I get it back on the bottom?

    Call bar is now vertical on the right side of screen. How do I get it back on the bottom? I've tried rebooting and changing screens but it won't change. I can't find a setting for that call bar.

        This isn't a native setting that I can find Relsea. Did you download an application that maybe has this function? Any luck if you reboot the phone by pulling out the battery?
    Please let us know what happens next. 
    Thanks,
    MikeS_VZW
    Follow us on Twitter @VZWSupport

  • New tab "+" button moved to the right edge; how to move it back?

    It used to be (like yesterday) that when I had a number of tabs open, the "mini-tab" "+" (new tab) button would be to the right of the last tab. Now, suddenly, it's all the way towards the right edge of the browser window, regardless of how many tabs are open. If there are a small number of tabs open, there is unused space (where more tabs would go).
    Okay -- so I'm change adverse -- how do I move the new tab "+" button over to the end of the list of tabs?
    Thanks.

    Although the "+" appears on the far right end of the bar when you are in Customize mode, it should slide over next to the last tab once you close out of Customize.
    If it doesn't, I wonder whether something else could be in between, such as an old "flexible space" control? (These are no longer in the Customize dialog as an option, but I don't know whether old ones were removed.)
    Following the old principle of turning it off and back on again, could you move the "+" to the main toolbar and exit Customize to save that, then go back into Customize and move it to the tab bar again, to see whether Firefox takes the hint?
    ''Edit: Forgot to include this link: [[Customize Firefox controls, buttons and toolbars]]''

  • I have a blue veritcal line going down the middle of my screen turned my iMac and it showed up. What can that mean?

    I have a blue veritcal line going down the middle of my screen turned my iMac and it showed up. What can that mean?

    Hard to help without knowing which variant of iMac you have. They've been in continuous production since 1998 in four major families, and what works for one familiy of iMac may not work to diagnose one from another family.
    Doing "About ths Mac" will show the processor info. Post what it says about your processor (and Mac OS version while you are there) and that will narrow what family of iMac you have.
    This forum section is for the three iMac families made before 2006.

Maybe you are looking for

  • ITunes deletes symlinked folder on Album Artist rename

    Hello community, I experience a very strange behavior of iTunes in combination with Symlinked folders. I use Windows 7 and my folder structure is listed below. I have a Laptop with a 256GB SSD and instead DVD-Drive a 640GB SATA drive. Drive layout: C

  • Migration of Designer Repository Owner from 7.3.4 to 8.1.7

    My goal is database import from Oracle 7.3.4(Windows NT 4.0) to Oracle 8.1.7( Linux 7.1). But, I have problem with importing Objects of Designer Repository Owner( no matter whether Designer 2.1 or Designer6.0).I gave Designer Repository Owner all nec

  • Check Box in Tree Control

    I found that the oracle installation is using tree control with check box. I tried to use the same feature in my application. But I found that the tree control in swing and infoswing is not having the feature to add checkbox in the tree control. If a

  • Multiple soap modules

    hello, i'm biulding a flex client that works with a soap web servise, i imported the wsdl though the wizard and all was good... untill i had to use a diffrent module within the same webService. the other module uses some of the same soap types as the

  • Using various parts of the same sound effect

    Hi, I am an intermediate flash user who has never really had any experience using sounds in my movies. Now i want to be able to use an mp3 (the james bond theme) in one of my movies. What i ideally want to be able to do is to use the one mp3 but have