Blue thin line

I have a 2007 20" iMac.  Recently just reinstalled Lion and had a thin, blue, vertical line on the left side of the display appear.  Wasn't there before upgrading from Snow Leopard.  If you look closely, you can see it flickers.  It's not too noticeable when the display is showing light colored images but when darker images are on the screen, the line is noticeable.  What would make this happen and how would I go about fixing this without Apple's help?

Matse,Willkommen zu den
Diskussionen,
What happens if you change the
display resolution? (Apple Menu > System
Preferences... > Displays > Display tab >
Resolutions) If the line stays in exactly the same
place despite the resolution change this points to an
LCD rather than graphics card issue.
mrtotes
thank you Adam for that hint. The line stays exactly in the same place. That means it is an LCD issue? That´s your opinion? Do you have any idea if it is possible to repair it, or is the only possibility to change the panel?
Thank you, Matse

Similar Messages

  • Blue thin line on the lower left iMac G4 Flat Panel

    Hi, since yesterday there is a blue thin line (0,039 inches (1 mm) thin; 35 inches (9 cm) long on the panel of my iMac G4 Flat Panel. It looks like drawing with a ruler, so straight and so fine.
    The line is on the left lower corner in a vertical position. At first I thought these are dead pixels, but I checked this. No dead pixels. I have changed the desktop picture etc., but it`s all the same. I run the apple hardware-test cd - no problems found. Is there someone with any idea? Is it possible to have a damaged graphics- chip although the hardware-test is o.k.?
    Does it make sense to open the iMac and look for dust and dirt on the motherboard?
    Thank you for any help, Matse
    iMac G4   Mac OS X (10.4.4)  

    Matse,Willkommen zu den
    Diskussionen,
    What happens if you change the
    display resolution? (Apple Menu > System
    Preferences... > Displays > Display tab >
    Resolutions) If the line stays in exactly the same
    place despite the resolution change this points to an
    LCD rather than graphics card issue.
    mrtotes
    thank you Adam for that hint. The line stays exactly in the same place. That means it is an LCD issue? That´s your opinion? Do you have any idea if it is possible to repair it, or is the only possibility to change the panel?
    Thank you, Matse

  • Help please. T22, Thin blue vertical line on my screen????​??

    Hi, Can anyone help me , I have a thin blue vertical line on my thinkpad t22 screen, how can i remove it

    Take it in for service. You may need to replace the screen.

  • Blue vertical thin line at macbook pro screen

    How to remove blue vertical thin line at macbook pro screen?

    It's not likely that YOU can... it's MORE likely that you've a glitch with either your screen or your GPU. You need to take your machine into your local Apple Store or an AASP and have them take a look at your machine. The diagnosis and any estimate for repair will be free.
    Be prepared, though, if you don't have the extended AppleCare Protection Plan, to pay for any required repairs.
    Clinton

  • Drawing and some layout help for a simple control: thin lines and application start

    I am trying to create a new, simple control. The control should act as a grouping marker much like that found in the Mathematica notebook interface. It is designed to sit to the right of a node and draw a simple bracket. The look of the bracket changes depending on whether the node is logically marked open or closed.
    After looking at some blogs and searching, I tried setting the snapToPixels to true in the container holding the marker control as well as the strokewidth but I am still finding that the bracket line is too thick. I am trying to draw a thin line. Also, I am unable to get the layout to work when the test application is first opened. One of the outer brackets is cut-off. I hardcoded some numbers into the skin just to get something to work.
    Is there a better way to implement this control?
    How can I get the fine line drawn as well as the layout correct at application start?
    package org.notebook;
    import javafx.beans.property.BooleanProperty;
    import javafx.beans.property.IntegerProperty;
    import javafx.beans.property.SimpleBooleanProperty;
    import javafx.beans.property.SimpleIntegerProperty;
    import javafx.scene.control.Control;
    * Provide a simple and thin bracket that changes
    * it appearance based on whether its closed or open.
    public class GroupingMarker extends Control {
      private final static String DEFAULT_STYLE_CLASS = "grouping-marker";
      private BooleanProperty open;
      private IntegerProperty depth;
      public BooleanProperty openProperty() { return open; }
      public IntegerProperty depthProperty() { return depth; }
      public GroupingMarker(boolean open) {
      this();
      setOpen(open);
      public GroupingMarker() {
      open = new SimpleBooleanProperty(true);
      depth = new SimpleIntegerProperty(0);
      getStyleClass().add(DEFAULT_STYLE_CLASS);
      // TODO: Change to use CSS directly
      setSkin(new GroupingMarkerSkin(this));
      public boolean isOpen() {
      return open.get();
      public void setOpen(boolean flag) {
      open.set(flag);
      public int getDepth() {
      return depth.get();
      public void setDepth(int depth) {
      this.depth.set(depth);
    package org.notebook;
    import javafx.scene.Group;
    import javafx.scene.paint.Color;
    import javafx.scene.shape.FillRule;
    import javafx.scene.shape.LineTo;
    import javafx.scene.shape.MoveTo;
    import javafx.scene.shape.Path;
    import com.sun.javafx.scene.control.skin.SkinBase;
    * The skin draws some simple lines on the right hand side of
    * the control. The lines reflect whether the control is considered
    * open or closed. Since there is no content, there is no
    * content handling code needed.
    public class GroupingMarkerSkin extends SkinBase<GroupingMarker, GroupingMarkerBehavior> {
      GroupingMarker control;
      Color lineColor;
      double shelfLength;
      double thickness;
      private Group lines;
      public GroupingMarkerSkin(GroupingMarker control) {
      super(control, new GroupingMarkerBehavior(control));
      this.control = control;
      lineColor = Color.BLUE;
      shelfLength = 5.0;
      thickness = 1.0;
      init();
      * Attached listeners to the properties in the control.
      protected void init() {
      registerChangeListener(control.openProperty(), "OPEN");
      registerChangeListener(control.depthProperty(), "DEPTH");
      lines = new Group();
      repaint();
      @Override
      protected void handleControlPropertyChanged(String arg0) {
      super.handleControlPropertyChanged(arg0);
        @Override public final GroupingMarker getSkinnable() {
            return control;
        @Override public final void dispose() {
        super.dispose();
            control = null;
        @Override
        protected double computePrefHeight(double arg0) {
        System.out.println("ph: " + arg0);
        return super.computePrefHeight(arg0);
        @Override
        protected double computePrefWidth(double arg0) {
        System.out.println("pw: " + arg0);
        return super.computePrefWidth(40.0);
         * Call this if a property changes that affects the visible
         * control.
        public void repaint() {
        requestLayout();
        @Override
        protected void layoutChildren() {
        if(control.getScene() != null) {
        drawLines();
        getChildren().setAll(lines);
        super.layoutChildren();
        protected void drawLines() {
        lines.getChildren().clear();
        System.out.println("bounds local: " + control.getBoundsInLocal());
        System.out.println("bounds parent: " + control.getBoundsInParent());
        System.out.println("bounds layout: " + control.getLayoutBounds());
        System.out.println("pref wxh: " + control.getPrefWidth() + "x" + control.getPrefHeight());
        double width = Math.max(0, 20.0 - 2 * 2.0);
        double height = control.getPrefHeight() - 4.0;
        height = Math.max(0, control.getBoundsInLocal().getHeight()-4.0);
        System.out.println("w: " + width + ", h: " + height);
        double margin = 4.0;
        final Path VERTICAL = new Path();
        VERTICAL.setFillRule(FillRule.EVEN_ODD);
        VERTICAL.getElements().add(new MoveTo(margin, margin)); // start
        VERTICAL.getElements().add(new LineTo(margin + shelfLength, margin)); // top horz line
        VERTICAL.getElements().add(new LineTo(margin + shelfLength, height - margin)); // vert line
        if(control.isOpen()) {
        VERTICAL.getElements().add(new LineTo(margin, height - margin)); // bottom horz line
        } else {
        VERTICAL.getElements().add(new LineTo(margin, height-margin-4.0));
        //VERTICAL.getElements().add(new ClosePath());
        VERTICAL.setStrokeWidth(thickness);
        VERTICAL.setStroke(lineColor);
        lines.getChildren().addAll(VERTICAL);
        lines.setCache(true);
    package org.notebook;
    import com.sun.javafx.scene.control.behavior.BehaviorBase;
    public class GroupingMarkerBehavior extends BehaviorBase<GroupingMarker> {
      public GroupingMarkerBehavior(final GroupingMarker control) {
      super(control);
    package org.notebook;
    import javafx.application.Application;
    import javafx.scene.Node;
    import javafx.scene.Scene;
    import javafx.scene.control.Label;
    import javafx.scene.control.TextArea;
    import javafx.scene.layout.BorderPane;
    import javafx.scene.layout.VBox;
    import javafx.stage.Stage;
    public class TestGroupingMarker extends Application {
      public static void main(String args[]) {
      launch(TestGroupingMarker.class, args);
      @Override
      public void start(Stage stage) throws Exception {
      VBox vbox = new VBox();
      BorderPane p = new BorderPane();
      VBox first = new VBox();
      first.getChildren().add(makeEntry("In[1]=", "my label", 200.0, true));
      first.getChildren().add(makeEntry("Out[1]=", "the output!", 200.0, true));
      p.setCenter(first);
      p.setRight(new GroupingMarker(true));
      vbox.getChildren().add(p);
      vbox.getChildren().add(makeEntry("In[2]=", "my label 2", 100.0, false));
      Scene scene = new Scene(vbox,500,700);
      scene.getStylesheets().add(TestGroupingMarker.class.getResource("main.css").toExternalForm());
      stage.setScene(scene);
      stage.setTitle("GroupingMarker test");
      stage.show();
      protected Node makeEntry(String io, String text, double height, boolean open) {
      BorderPane pane2 = new BorderPane();
      pane2.setSnapToPixel(true);
      Label label2 = new Label(io);
      label2.getStyleClass().add("io-label");
      pane2.setLeft(label2);
      TextArea area2 = new TextArea(text);
      area2.getStyleClass().add("io-content");
      area2.setPrefHeight(height);
      pane2.setCenter(area2);
      GroupingMarker marker2 = new GroupingMarker();
      marker2.setOpen(open);
      pane2.setRight(marker2);
      return pane2;

    The test interfaces are already defined for you - the 3rd party session bean remote/local interfaces.
    It is pretty trivial to create implementations of those interfaces to return the test data from your XML files.
    There are a number of ways to handle the switching, if you have used the service locator pattern, then I would personally slot the logic in to the service locator, to either look up the 3rd party bean or return a POJO test implementation of the interface according to configuration.
    Without the service locator, you are forced to do a little more work, you will have to implement your own test session beans to the same interfaces as the 3rd party session beans.
    You can then either deploy them instead of the 3rd party beans or you can deploy both the test and the 3rd party beans under different JNDI names,and use ejb-ref tags and allow you to switch between test and real versions by changing the ejb-link value.
    Hope this helps.
    Bob B.

  • Laserjet 2605dn color printing problem, Blue/green line on page.

    I have an HP color laserjet 2605dn that has started to print a faint,thin  blue/green line from top to bottom about 3 inches in from the entire right edge of every page. I ran the cleaning cycle with no change. Any suggestions on how to correct this?

    I have very similar problem on my 2600n which is printing 2 vertical green lines very close together about 1.5 inches from left edge. All toners are in supply override mode with black toner reading: Estimated Pages Remaining 0
    Color cartridges contain toner with 329 pp remaining according to supply status page.
    Is this problem likely to disappear when toner cartridge(s) are replaced?

  • Is there a way to create a heading with shading behind the text and thin lines above and below?

    I'm working with InDesign CS6, Windows 7.
    Is there a way, using paragraph rules, to create a heading with shading behind the text and thin lines above and below the text?
    I'd like to create headings that look like these:
    Thank you!

    I have a document where I almost do such, but without the fill. I use a Head Style which Spans Columns for this instance; it allows the haeds to flow and fill the width.
    Paragraph Rules above and below are turned on with plenty of offset.
    I tweaked my setting to accomodate your need - It required only one instance, not above and below, and changing the stroke to a double stroke. 
    It may be necessary to create a custom stroke to modify the proportion of stroke vs fill. There is a difference of thin-thin and  thick-thick, neither of which seemed perfect but might be dependent on the Character height.
    Creating custom strokes is accomplished via the Strokes Panel.

  • Whats the easiest way to put a thin line around an image?

    Can anyone tell me the easiest way to put a thin line around
    an image? I'm also interested in the use of thin lines as part of
    the graphic design on a page, how are they generated?
    Thanks

    .oO(cdeatherage)
    >In Dreamweaver, you can set a border for each image but
    be aware that some
    >versions of some browsers may not display it.
    This shouldn't be an issue in any used browser today.
    >If it is a consistent look you're
    >after, I'd say the most permanent thing to do would be to
    edit the image in
    >Photoshop or Fireworks. In Photoshop, e.g, I'd create a
    background fill with
    >the color I wanted the border, then add the image,
    centered, in a new layer on
    >top of that. Merge the layers, then save optimized for
    the web.
    Way too complicated. If you want to change the color or style
    of the
    border, you have to modify the image. With CSS you can
    directly change
    the line style in a much easier and faster way.
    Micha

  • Print Apps won't print with C510a eStation. Prints thin line at top of page.

    My C510a eStation printer will not print using the Print Apps.  It just prints a thin line at top of page.  Everything works fine until I print.
    All other print functions work.  It prints from computer via WiFi.  It prints when I send an email to it.  It copies via the Zeen.  It just won't print using the Print Apps.
    Does anyone else have this problem?  What is the solution?
    12/23/2010 3:00PM.  I just got off the phone with an HP engineer.  She said that the eStation is still in the TESTING phase and to call to report problems so they can improve the product.  (I would have thought the product would have been fully tested before being released to the public!)
    She had me reset the Zeen display by holding down the volume keys while powering up.  This erased everything that had been done on the Zeen by me and resulted in no HOME screens, which will have to be set up by me.  The only app at the bottom of the blank home page was Yahoo!.  Even the printer app was missing.  I had to move it from the app tray to the home page.  Now, I have to spend hours, again, setting up the Zeen.
    After the reset, the printer apps seem to work now.  The Zeen will copy using the printer app.  My computer still seems able to print and scan to/from the eStation.
    The eStation C510a eStation printer and Zeen display are very exciting.  However, they are not for someone not willing to spend the time to get it to work properly.  If you have a cell phone, be prepared to use up a lot of minutes while on support.
    The HP engineer said that it will soon have a new release of Android operating on the Zeen which will allow it to be faster.
    This question was solved.
    View Solution.

    I have decided to return this printer to the store as it just has too many problems.  HP has essentially told me they will not issue updates to solve the problems.  I hate this, as I really loved the product.

  • I have Windows Vista and have tried everything! My Ipod Touch has Malfunctioned and cannot be recognized by Windows or Itunes! When I turn my Ipod on the white apple comes on and the 15 seconds or so after that a thin line comes on the screen above it.

    A thin line appears above the logo then the loading sign pops up and then the whole thing freezes! I read somewhere to hold the home button and then plug in the usb will help it be recognized by Itunes or help to restore it! I tried that it didn't work.I tried uninstalling Itunes and then re-installing it. I have the newest version of Itunes and don't know what else is left to do? can someone please help?
    Thank you for reading!

    Try placing the iPod in recovery mode (I think that is what you were try to do) and then try to restore the iPod.  For recovery mode see:
    iPhone and iPod touch: Unable to update or restore

  • 7th generation ipod nano only displaying white screen with blue horizontal lines

    Hi,
    My 7th generation ipod nano is now only displaying a white screen with blue horizontal lines along the bottom. It still plays music and is recognised in itunes with I connect it to my PC.
    I have reset is and restored it and it is charged.
    Please advise.
    Thanks,
    Jess

    Hi jkjuarez2012,
    Thank you for visiting Apple Support Communities.
    It sounds like your iPod nano is only showing the Apple logo with a white background, and you've tried many good steps including resetting and restoring the device. I know I'd miss my music in this situation.
    Make sure that you followed the steps in this article when restoring your iPod:
    Restoring iPod to factory settings - Apple Support
    If the issue continues after restoring, your iPod nano may need to be serviced. You can use this link to find out more about iPod service:
    If the issue is still not resolved, please read this information on servicing your iPod.
    From:
    iPod nano (7th generation): Hardware troubleshooting - Apple Support
    Best Regards,
    Jeremy

  • TS1587 Hello, I downloaded an ntfs systemfile from tuxera and used it to convert a usb stick, my imac froze a while after so I turned it off the on and now I have blue vertical lines on boot up and the a white screen with lots of tine blue symbols, need h

    Hello, I downloaded an ntfs systemfile from tuxera and used it to convert a usb stick so I could put more than the fat32 4gb on, my Imac froze a while after so I turned it off the on and now I have blue vertical lines on boot up and the a white screen with lots of tine blue symbols after, mouse pointer moves but thats about it.
    Have used R and cmd to get a menu up but once I choose one of the four options my mouse is rendered useless and I cant get any further, have downloaded, to another usb stick recovery disk assisstant and am trying to use that in conjunction with the lion option on the previously mentioned screen, computer was responding really slowly and has now frozen on the terms of software license agreement (maybe the last hurdle!) can anyone pleeeeeease help!!!!!??????

    It's likely that the boot drive is failing, or that there's some other hardware fault. Run the Apple Hardware Test.
    Intel-based Macs: Using Apple Hardware Test
    Even if the test is negative, you should make a "Genius" appointment at an Apple Store to have the machine tested more thoroughly.

  • Thin lines in pdf file displayed on mac

    Hi,
    I don't know if this is the right place to bring this up.  So redirection elsewhere is appreciated!
    I've noticed a problem with displaying certain pdf files on a mac.  The files are 2D filled plots produced by the free scientific software Yorick (http://yorick.sourceforge.net/).  It happens when I view it in Preview or Powerpoint on a mac.  But not if I use a pdf viewer on a unix system.  The yorick source code for a simple example is below.  I can't find a way to attach files to this messages or I'd include the pdf's.  Is there a way to do this?
    Both png's are fine, and the pdf of the pli plot is fine.  pli assumes uniform grid spacing, is fast, and must use different graphics primitives than plf, which does not assume uniform grids (i.e. you can have non-square elements).  In this case both x and y grids really are uniform.  The problem is with the pdf of the plf plot.  Look at it in Preview, you should see some thin lines.  Put it in powerpoint and the same.  If you put some solid colored box in back of it, you'll see the color.  So the lines are transparent or something.
    David Munro, the creator of Yorick, suggests it's an issue with anti-aliasing.
    Anyway, the problem isn't that severe in this example, but in others (which don't have simple source code) it's more annoying. 
    Either way, any advice on this, or the right people to report this to, is appreciated.
    Cheers,
    David
    // 10dec10: bug of contour plots in pdf's having white lines on mac
    x=span(0,3,21);
    y=span(-2,2,30);
    x2 = x(,-) + 0*y(-,);
    y2 = 0*x(,-) + y(-,);
    z2 = exp(-x2^2-y2^2);
    fma;
    palette,"rainbow.gp";
    pli, z2, x(1),y(1), x(0),y(0);
    cd,"~/yorick/pdf-mac-bug";
    pdf,"pdfmacbug_pli.pdf";
    png,"pdfmacbug_pli.png";
    fma;
    palette,"rainbow.gp";
    plf, z2, y2,x2,;
    cd,"~/yorick/pdf-mac-bug";
    pdf,"pdfmacbug_plf.pdf";
    png,"pdfmacbug_plf.png", dpi=150;

    As I suspected, the problem is that the other viewers are not savvy enough to handle the "stitching problem".
    What looks like a single image is really a WHOLE LOT of single squares.  I took a snapshot of the Edit Object tool in Acrobat with all the objects selected.  See <https://photos-3.dropbox.com/i/o/R6asqv64sEP1Tf7eIEBfNbFbMw0F7qKEaFwfnXQVKLo/1644474/12950 96400/0fa9181>.
    As you can see from that, each square is a separate image that needs to be rendered and if the viewer doesn't understand how to proper stitch the pieces together then you will get empty pixels (which appears as white lines).
    Either contact the author of the program that authored the document and see about getting that fixed (if it's not you) and/or contact the other viewers about improving their products.

  • I'm using a pc, (windows 8.1,) and I cannot get a thick and thin line with CS6. None of the brush tool settings have any effect, even in the preview. Is there a setting I need because I'm using a pc?

    I'm using a pc, (windows 8.1,) and I cannot get a thick and thin line with CS6. I want to draw, but I cannot get any linework like I should. I also use Sketchbook Pro, and ToonBoom, and I get wonderful linework. But not with Photoshop.
    None of the brush tool settings have any effect, even in the preview. Is there a setting I need because I'm using a pc and not a mac?

    Thanks for your response,
    I'm using a Fujitsu T901 laptop, with a stylus pen. Painting works great in Photoshop, but for drawing there is no sensitivity at all.  Frans Vischer
    author and illustrator of Fuddles, A Very Fuddles Christmas and Jimmy Dabble
    www.fransvischer.com
    pamperedfatcat.wordpress.com

  • Thin lines in pdf file

    Hi all!
    I have a question. The same problem in Illustrator CS6 (but it appears from a few version of CS back).
    I have document in an Illustrator. The document is generally for print, I don't using them to making website, so without using Slice tool.
    I need have separation pdf so first I print the document to postrscript usind pdf ppd. Always the same settings:
    1. General - only media size
    2. Marks and Bleed - none (i mean all off)
    3. Output - mode: Separations (host-based), and rest like is: emulsion: Up, Image: Positive, Printer Resolution: 71lpi/600dpi
    4. Graphic - none
    5. Color Managment - none
    6. Advanced - none
    7. Summary - none
    After printing I have a separation, pdf file. Always appears vertical and horizontal thin white lines, like document was preparing for website and sliced.
    Why this happend? Can I use some settings to avoid this situation? I tried a various setting but the lines always appears.. Help!

    It always was in a bitmap.
    2013/8/21 Monika Gause <[email protected]>
       Re: thin lines in pdf file  created by Monika Gause<http://forums.adobe.com/people/Monika+Gause>in
    Illustrator - View the full discussion<http://forums.adobe.com/message/5613437#5613437

Maybe you are looking for

  • What's wrong with my laptop?

    Every time I try to watch a video, play a game on Facebook, load my iTunes, or load a radio station on my HP laptop it freezes the program I am in and I have to close out of it. I have tried shutting it down, restarting it, and instaling updates and

  • Sending an InDesign document in an e-mail as an eBlast

    I have create a newsletter in InDesign, and I would like to e-mail it out as an eBlast. When I send it through Outlook as a JPG, Outlook downsizes the files and the newsletter looks awful. I have tried bumping the resolution down to 96 in hopes that

  • How do I update IOS for my iPad2 wirenessly ?

    How do I update IOS for my iPad2 wirenessly ?

  • Cant get rid of PPP message

    i recently used my mobile as a modem to connect to the internet (via bluetooth), now im back in the office using ethernet connection. Everytime i switch users, i get the following message http://simonboard.com/mac/PPP.png what can i do to get rid of

  • DxO v8 vs. Lr4

    Just tried DxO v8 (first time since v6) Results: * v8 seems a little better than v6 (I didn't do a rigorous comparison, to say the least), but overall I still much prefer Lr4. Still, DxO's lens vignette correction is close to perfect, whereas Lightro