HT201173 how come my screen is green tinted?

how come my screen is green tinted?

Generally a green tinted screen is a result of a poor video connection to the monitor. Try unplugging and replugging each end of the video cable and while you are at it, examine the contacts for signs of corrosion or dust. The unplug/replug will usually clean any crud off of the connectors. If that fails try another video cable. Connections inside the cable at either connector can get broken or damaged. If that is the case replacing the cable is easier and probably cheaper than attempting to repair it. If you still have a green tint the video card in you Mac mini or its connection to the logic board could be at fault and in that case a trip to the Genius Desk at the nearest Apple store is warranted. (Be sure to go online or call ahead and make a Genius Desk reservation before you go. That can save hours of time waiting for them to "work you in" to an already jam packed day.

Similar Messages

  • Macbook pro retina hdmi external comes out with a green tint?

    I have a 2010 old macbook pro and that works fine but the retina comes out with a green tint when pluged in with hdmi.

    I have already tried calibrating the display and i used a thunderbolt to hdmi converter and i had the same problem.

  • How come whole screen goes blank when cropping ?

    As per this previous post
    Rosie Perera, "How come whole screen blinks when cropping?" #, 24 May 2007 7:12 pm
    I am experiencing the same problems with the same degree of frustration as the OP.
    When the mouse/pen is held following a crop the image and pallette windows go blank, and when the pointing device is released the image and pallettes are restored. Again, problem is not easy to replicate, but can happen with the marquee and ruler tools as well - was this issue ever resolved ?

    Just done some more experimenting - if you take the palletes outside the main photoshop window, they don't suffer this problem. Also if you take the image window outside of the photoshop window before trying to apply the crop, its image is OK. It seems that only the elements within the main photoshop window are effected. Sounds more like a photoshop bug than a driver problem ??

  • WTF - How comes my 'screen name' has been changed to M Golding?

    osgood_
    Is this the work of the dappy idiots at Adobe??
    Looks like everyone elses screen name changed over correctly.
    Can we get this changed back?

    Yah! I've updated my name.....no longer M Golding back to  osgood_ (albeit with a . infront of it - name field in Adobe profile can't be left blank)
    I can only think the forum is now applying the Adobe 'name' profile instead of the 'screen name'.....maybe? In that case is there any reason to have a 'screen name' option in the Abobe profile section......humm.
    Now just need to sort out how to see who has replied to the threads without having to open them each time, which defeats the objective if you cant keep track of who is replying without opening the 'door'...........maybe there is an option for that somewhere I'm overlooking?

  • How come full screen exclusive mode is so slow?

    Hi. I am currently working on customer facing point-of-sale application. This application has a lot of animation going on and so needs quite speedy graphics performance. When I first investigated this it looked like I could do it in pure Java 2D which would be a lot easier than resorting to DirectX or OpenGL and mixing languages.
    Unfortunately as the app has moved closer to functional complete the graphics performance appears to have deteriorated to the point where it is unusable. So I have gone back to the beginning and written a test program to identify the problem .
    The tests I have done indicate that full screen exclusive mode runs about ten times slower than windowed mode. Which is mind boggling. Normally - say in DirectX - you would expect a full screen exclusive version of a games/graphics app to run a little bit quicker than a windowed version since it doesn't have to mess around with clip regions and moving vram pointers.
    My test program creates a 32 bit image and blits it to the screen a variable number of times in both windowed and full screen mode. Edited results look like this:
    iter wndw fscrn performance
         10 16.0 298.0 1862% slower
         20 47.0 610.0 1297% slower
         30 94.0 923.0 981% slower
         40 141.0 1205.0 854% slower
         50 157.0 1486.0 946% slower
         60 204.0 1877.0 920% slower
         70 234.0 2127.0 908% slower
         80 266.0 2425.0 911% slower
         90 297.0 2722.0 916% slower
         100 344.0 3253.0 945% slower
    The results are substantially the same with the openGL hint turned on (although I don't have that option on the release hardware). I am assuming that the images end up as managed since they are created through BufferedImage and the system is running under 1.5.
    Is there a way to get the full screen version running as fast as the windowed version?
    Here's the test prog:
    import java.awt.*;
    import java.awt.image.*;
    import java.awt.event.*;
    import javax.swing.JFrame;
    public class BlittingTest extends JFrame {
         BufferedImage     blankImage;
         BufferedImage     testImage;
         boolean               fullscreen;
         int                    frameNum;
         public BlittingTest( boolean fullscreen ) throws HeadlessException {
              super();
              // window setup. Escape to exit!
              addKeyListener ( new KeyAdapter() {
                   public void keyPressed( KeyEvent ke ) {
                        if (ke.getKeyCode() == KeyEvent.VK_ESCAPE ) {
                             System.exit(0);
              this.fullscreen=fullscreen;
              if ( fullscreen ) {
                   setUndecorated ( true );
              } else {
                   setTitle( "BlittingTest - <esc> to exit)");
                   setSize( 800, 600 );
              setVisible(true);
              setIgnoreRepaint(true);
              // strategy setup
              if ( fullscreen ) {
                   GraphicsDevice gdev =
                        GraphicsEnvironment.getLocalGraphicsEnvironment().getDefaultScreenDevice();
                   DisplayMode newDisplayMode = new DisplayMode (800, 600, 32,
                                                 DisplayMode.REFRESH_RATE_UNKNOWN);
                   DisplayMode oldDisplayMode = gdev.getDisplayMode();               
                   gdev.setFullScreenWindow(this);
                   gdev.setDisplayMode(newDisplayMode);
                   createBufferStrategy(2);
              // create assets
              testImage = new BufferedImage ( 50, 50, BufferedImage.TYPE_INT_ARGB );
              Graphics2D g = testImage.createGraphics();
              for ( int i = 0; i < 50; i ++ ) {
                   g.setColor( new Color ( 0, (50 - i) * 3, 0, i * 3 ));
                   g.drawLine( i, 0, i, 49 );
              g.dispose();
              blankImage = new BufferedImage ( 50, 50, BufferedImage.TYPE_INT_ARGB );
              g = blankImage.createGraphics();
              g.setColor ( Color.WHITE );
              g.fillRect( 0, 0, 50, 50 );
              g.dispose();
              frameNum = -1;
         public void init() {
              // blank both screen buffers
              for ( int i = 0; i < 2; i++ ) {
                   Graphics g2 = getBufferStrategy().getDrawGraphics();
                   g2.setColor ( Color.WHITE );
                   g2.fillRect( 0, 0, 800, 600 );
                   g2.dispose();
                   getBufferStrategy().show();
         public long testFrame ( int numBlits ) {
              int          x, y;
              long     timeIn, timeOut;
              frameNum++;
              Graphics g = getBufferStrategy().getDrawGraphics();
              g.drawImage( testImage, 0, 0, null );
              // blank previous draw
              if ( fullscreen ) {
                   if ( frameNum > 1 ) {
                        x = frameNum - 2;
                        y = frameNum - 2;
                        g.drawImage ( blankImage, x, y, null);
              } else {
                   if ( frameNum > 0 ) {
                        x = frameNum - 1;
                        y = frameNum - 1;
                        g.drawImage ( blankImage, x, y, null);                    
              x = (int) frameNum;
              y = (int) frameNum;
              timeIn = System.currentTimeMillis();
              for ( int i = 0; i < numBlits; i++ ) {
                   g.drawImage ( blankImage, x, y, null);
                   g.drawImage ( testImage, x, y, null);
              timeOut = System.currentTimeMillis();
              g.dispose();
              getBufferStrategy().show();
              return     timeOut - timeIn;
         public static void main(String[] args) {
              boolean error = false;
              BlittingTest window = null;
              double []     windowedTest = new double [101];
              double []     fullscreenTest = new double [101];
              window = new BlittingTest ( false );     
              window.init();
              for ( int f = 1; f <= 100; f++ ) {
                   windowedTest[f] = window.testFrame( f * 10 );
              window.setVisible(false);
              window.dispose();
              window = new BlittingTest ( true );     
              window.init();
              for ( int f = 1; f <= 100; f++ ) {
                   fullscreenTest[f] = window.testFrame( f * 10 );
              window.setVisible(false);
              window.dispose();
              for ( int f = 10; f <= 100; f++ ) {
                   System.out.println ( "\t" + f + "\t" + windowedTest[f] +
                             "\t" + fullscreenTest[f] +
                             "\t" + (int) ( (fullscreenTest[f]/windowedTest[f])*100.0) + "% slower");
    }

    Well I could do...
    The problem is that I am compositing multiple layers of alpha transparent images. If I just render straight to the screen I get nasty flicker where I see glimpses of the background before the top layer(s) get rendered. So I would have to render to an offscreen buffer and then blit the assembled image into the screen. Even then there will be some tearing as you can never sync to the screen refresh in windowed mode.
    And the thing is - there ought to be a 'proper' solution, g*dd*mm*t. Surely the core team didn't put together a solution that is ten times slower than it should be and then say 'What the heck, we'll release it anyway'.
    I mean, if you can't believe in Sun engineering what can you believe in?

  • How come my screen always freeze when Mozilla brings up a new version. That happened on last Firefox update and now when the new Thunderbird was installed. This is really bugging me.

    I am using Windows 7. This never happened when I used XP Professional.

    Hi John, thanks a lot, I see that. It actually answers another question I have. I already had that box checked, but I never knew that dialogue box was there. Anyway, my MOTU midi express 128 is dimmed and all 8 midi channel lights are on which has never happened before so there must be something wrong with my midi setup now. sheesh! This helps a lot! Thanks!
    Rick

  • My HP 1310 series, model1315 has a problem. Every copy comes out with a heavy green tint.

    I have cleaned the cartridge, put in a new cartridge, and the "self help" report only has  three bars showing, black, green and yellow. It appears it should have six bars of color. All copies come out with a green tint. Any ideas?
    normre9

    It appears your cartridge is out of magenta ink.  Is this an original HP cartridge or a reman.refill?  If the former check the cartridge warranty as shown here.  If the latter see here, then contact your supplier for a replacement or refund.
    Bob Headrick,  HP Expert
    I am not an employee of HP, I am a volunteer posting here on my own time.
    If your problem is solved please click the "Accept as Solution" button ------------V
    If my answer was helpful please click the "Thumbs Up" to say "Thank You"--V

  • When using Photoshop all my photos come out with a redish tint.What is going on?

    I can print color and black and white photos all the time, except when I try to print a manipulated photo using Photoshop. When I use Photoshop they have a redish tint to them. It does not matter if I print try to print color or black and white, they all come out with a redish tint. i do not know what is wrong. my printer works well at all other times. this problem occurs only when i go to print photos from Photoshop. Help , Please.
    I use Windows 7 and have an HP 4680 office printer.

    Thanks I'll try there.
    From: Mylenium <[email protected]>
    To: Dennis Maxey <[email protected]>
    Sent: Monday, June 13, 2011 10:34 PM
    Subject: Why when I print through photoshop elements the photos come out with a green tint?
    Wrong forum. Your journey to eternal bliss and happiness starts http://forums.adobe.com/community/photoshop_elements.
    Mylenium

  • The resolution in my screen just went green-tinted and fuzzy, how do I fix it? I have a MacBook Pro

    The resolution in my screen just went green-tinted and fuzzy, how do I fix it? I have a MacBook Pro

    I did. Unfortunately, it did not fix the problem. Do you have any more possible solutions?

  • HT5622 On Itunes, when I watch a movie does not come up. No Picture comes up but a green screen with other lines and stuff does. How can this be fixed?

    On Itunes, when I press on a movie that I would like to watch it does not come up. All that comes up it a green screen with other lines in it. How can I fix it?

    On Itunes, when I press on a movie that I would like to watch it does not come up. All that comes up it a green screen with other lines in it. How can I fix it?

  • Green Tint to Screen

    I have been using my Apple Studio Display 17" for several years with my 12" PowerBook G4 without a problem. As of today, the screen has a green tint. The desktop displays correctly, but is green. I tried it with my MacBook, and the color was the same. When I ran Profile First Aid, it found 3 bad profiles. It was not able to fix any of the profiles. I am running Leopard 10.5.1.
    Does anyone have any ideas about how this may be fixable?
    Thanks -
    Dudley Warner

    Hello, Welcome to Apple Discussions.
    Below are your options.
    Apple Retail Appointment - http://www.apple.com/retail/geniusbar/
    iPod Touch Service Options - http://www.apple.com/support/ipod/service/faq/
    Contact iPod Touch Support - 1-800-275-2273

  • How can I use the green screen with iMovie?

    Hey guys! I was wondering how does the green screen effect work with iMovie 11? I need to use green screen in iMovie in school for a project and I am trying to troubleshoot the problem.
    Help is appreciated.
    Thanks,
    Ben

    Record a video against a green screen and import it to imovie.
    Then place the green screen footage ON TOP of the background you want and a list should come up. Select green screen. Also, before you do any of that make sure that your advanced tools are selected under preferences in imovie.

  • Itouch has green tint to screen and colors are off like a convergence in TV

    My brother showed me his Itouch and it has a green tint to it similar to a magnet to the old CRT computer monitors. How can I fix this I have tried updating and restoring the Itouch.

    Hello, Welcome to Apple Discussions.
    Below are your options.
    Apple Retail Appointment - http://www.apple.com/retail/geniusbar/
    iPod Touch Service Options - http://www.apple.com/support/ipod/service/faq/
    Contact iPod Touch Support - 1-800-275-2273

  • Why has my macbook pro developed a neon green tint to the entire screen?

    i brought my laptop to costa rica and suddenly the screen has a neon green tint to it. i have restarted my computer 3 times and each time it has reverted to the green tint when i turn it back on. why is this happening and how can i fix this?

    System Preferences > Displays > Color
    Select the built-in profile for your display.

  • IPhone 5c boarder of screen is a green tint

    Hello I have had my iPhone 5c for about 4 months now and I have noticed (while I was reading a book) a slight green tint around the edge of where the screen begins all around the screen. It is only noticeable on white screens and was wondering if this might warrant a replacement.

    mine has a line going down it only comes when i on the phone for so long is it the lcd/digitizer i aint replaced the screen yet, but this is what is on my screen, is it defo the screen that is gone if i replace it will that line go away?

Maybe you are looking for

  • Cisco support for third-party apps on SRE?

    Hi - I am thinking about running some third-party unified communications apps under VMWare ESXi5 on a Cisco SRE 900 module.   According to the Cisco docs, third-party apps are supported on these modules (see table below) but the app in question is NO

  • Delete shortcut stops working in Dreamweaver CS4 file window

    Frequently the delete key stops deleting files in the file window in Dreamweaver CS4 on my Mac. The delete in the File menu for the window continues to work. Anyone know what causes this or how to stop it?

  • Weblogic  EJB Cache full exception

    For my application i am using weblogic 4.5.1, and while running the server i am getting an exception "weblogic.ejb.extensions.CacheFullException:". Though i have restarted the server still the problem persists, can you give suggestion how i can resol

  • DPC Latency workaround for 2010 Macbook Pros

    Current workaround for 330M users: 1) Again use PowerMizer Manager to use a fixed performance level, it should not matter which one so you can also use the power saving 2D mode (may be different on your setup though). 2) Open the NVidia Control Panel

  • My iPad won't connect to the AppStore of the iTunes store

    i just got my iPad yesterday and went through setting it up and at first e dry thing seemed to work fine but now it will not connect to the App Store or the iTunes store. It does connect to the browser and other apps that use wifi, my iPhone which is