Re: Pink and green screen on Satellite X200

Tough one for any one.... my laptop screen is a pretty pink and green but if I connect to my TV via HDMI it works flawlessly
Thank you
Trevor

>... but if I connect to my TV via HDMI it works flawlessly
You have done very good test. Graphic card is OK and troublemaker is LCD display.
On eBay you can find it pretty cheap.
Can you exchange it alone?

Similar Messages

  • Mac wont play online videos and photobooth is pink and green pixels?

    Recently my MacBook Pro has been very slow and has now decided not to play videos on E.g Youtube. I thought it was just the internet playing up, but going to use PhotoBooth the camera screen is all pink and green pixels?? Overall my mac is very slow and doesnt play video/photobooth. Help please!!!

    The same problem i have too, I see green pixels on videos and PhotoBooth.
    (OS X 10.8.3 (12D78))

  • HT2499 Can't play a movie that I purchased on iTunes.  Get pink and green pixelated moving images only. What can I do?

    Can't play my recently purchased itunes movie.  Get a screen which is pixelated pink and green moving images..

    Click the "Report a Problem" link found in your email reciept.

  • Late 2008 MacBook Pro 17" frozen with pink and green pixels

    Hi all,
    Hope someone can point me in the right direction with my Macbook Pro problem. I have a late 2008 version of the 17" MacBook Pro. I've been using it today and it's been completely fine. that was up until I was uploading my recent holiday photos to iPhoto. I left it to upload and came to check on it after 5 minutes. I found the program had frozen and pink and green pixels were spotted all over the screen.
    I turned the laptop off by the power button. When I started her up again I found the white screen with the pink and green pixels everywhere and apple logo appear. It starting booting and then just stopped. the screen froze and nothing was working. I've tried booting up in safe mode and again it just freezes.
    Any advice on this would be greatly appreciated as I'm lost without my computer. I've included a photo I've taken if the frozen screen.
    Many Thanks,
    Dean.

    According to MacBook Pro (Early 2008 and Late 2008) - Technical Specifications you have a model with
    NVIDIA GeForce 8600M GT graphics processor with dual-link DVI support and 512MB of GDDR3 memory
    Dual display and video mirroring: Simultaneously supports full native resolution on the built-in display and up to 2560 by 1600 pixels on an external display, both at millions of colors
    DVI output port
    VGA output using included DVI to VGA adapter
    Built-in iSight camera
    The 8600M GT has several recalls for GPUs, which had a 4-year free repair from date of purchase. It may be too late in your case. You can find the recall notices via internet search if you want to.
    You should run the AHT -Using Apple Hardware Test
    Please see MacBook Pro: Distorted video or no video issues

  • Camera video preview - Random crashes and green screens

    Hello everyone,
    I am currently working on a Windows Phone 8.1 app and I need to preview video from the phone's back camera. For quite some time I've been struggling with random crashes and green screens. When these green screens appear, all camera apps become affected and
    the device needs to be restarted. Occasionally the phone freezes and only recovers after battery removal. I test the app on my Lumia 620.
    After some web search, I found references to the same problem by many users/developers of different apps. I'm really frustrated as I've tried many possible solutions with no avail.
    Here is part of my code:
    //in App.xaml.cs:
    MediaCaptureInitializationSettings settings;
    public static MediaCapture captureMgr;
    public static bool UnableToInitializeCamera = false;
    public async Task InitializeVideoCapture()
    DeviceInformation backWebcam = await GetCameraDeviceInfoAsync(Windows.Devices.Enumeration.Panel.Back);
    if(captureMgr!=null) captureMgr.Dispose();
    captureMgr = new MediaCapture();
    settings = new MediaCaptureInitializationSettings();
    settings.StreamingCaptureMode = StreamingCaptureMode.Video;
    settings.PhotoCaptureSource = PhotoCaptureSource.VideoPreview;
    settings.AudioDeviceId = "";
    if (backWebcam != null)
    settings.VideoDeviceId = backWebcam.Id;
    else
    var _messageDialog = new MessageDialog("Back panel camera not found");
    _messageDialog.Commands.Add(new UICommand("OK"));
    _messageDialog.ShowAsync();
    try
    await captureMgr.InitializeAsync(settings);
    captureMgr.SetPreviewRotation(VideoRotation.Clockwise90Degrees);
    UnableToInitializeCamera = false;
    catch
    UnableToInitializeCamera = true;
    Debug.WriteLine("HANDLED EXCEPTION: camera could not be initialized");
    var _messageDialog = new MessageDialog("Unable to initialize camera");
    _messageDialog.Commands.Add(new UICommand("OK"));
    _messageDialog.ShowAsync();
    protected override async void OnLaunched(LaunchActivatedEventArgs e)
    //.... other app initialization code
    await InitializeVideoCapture();
    Window.Current.Activate();
    private async void OnResuming(object sender, object e)
    AppIsResuming = true;
    FinishedCameraInitialize = false;
    await Task.Delay(TimeSpan.FromSeconds(0.5));//this makes crashes less frequent
    await InitializeVideoCapture();
    FinishedCameraInitialize = true;
    if(WasPreviewingCamera)
    WasPreviewingCamera = false; //the following line allows time for SetupPage._captureElement to be assigned before video preview starts while (!SetupPage.CaptureElementSourceAssigned) await Task.Delay(TimeSpan.FromMilliseconds(1));
    SetupPage.CaptureElementSourceAssigned = false;
    try
    Debug.WriteLine("trying to restart video preview");
    await captureMgr.StartPreviewAsync();
    SetupPage.PreviewingCamera = true;
    catch
    Debug.WriteLine("HANDLED EXCEPTION: unable to start previewing");
    SetupPage.PreviewingCamera = false;
    GC.Collect();
    AppIsResuming = false;
    private async void OnSuspending(object sender, SuspendingEventArgs e)
    var deferral = e.SuspendingOperation.GetDeferral();
    while (AppIsResuming) await Task.Delay(TimeSpan.FromMilliseconds(1));//prevents crash when app is suspended right after it is resumed
    await CleanupCaptureResources();
    TimeOfLastSuspend = DateTime.Now;
    FinishedCameraInitialize = false;
    GC.Collect();
    deferral.Complete();
    public async Task CleanupCaptureResources()
    if (SetupPage.PreviewingCamera)
    await captureMgr.StopPreviewAsync();
    WasPreviewingCamera = true;
    SetupPage.PreviewingCamera = false;
    else WasPreviewingCamera = false;
    if (captureMgr != null) captureMgr.Dispose();
    //in SetupPage.xaml.cs
    void OnSuspending(object sender, Windows.ApplicationModel.SuspendingEventArgs e)
    var deferral = e.SuspendingOperation.GetDeferral();
    _captureElement.Source = null;
    CaptureElementSourceAssigned = false;
    GC.Collect();
    deferral.Complete();
    private async void OnResuming(object sender, object e)
    ProgressRing2.Visibility = Visibility.Visible;
    ProgressRing2.IsActive = true;
    while (!App.FinishedCameraInitialize) await Task.Delay(TimeSpan.FromMilliseconds(1));
    App.FinishedCameraInitialize = false;
    captureElement.Source = App.captureMgr;
    CaptureElementSourceAssigned = true;
    GC.Collect();
    ProgressRing2.Visibility = Visibility.Collapsed;
    ProgressRing2.IsActive = false;
    Any help towards a solution will be greatly appreciated.
    Thank you

    I will also advice that you start by following the
    Windows Store app sample.
    Is this a Windows Phone app?
    The crash/green screen only manifests itself when I suspend my app and switch to the default camera app (could be any other camera app perhaps). It happens roughly 1 out of 8 times. That's why I posted the suspension and resuming handlers, which I wrote
    according to the msdn instructions.
    I found
    this page with a sample that demonstrates the MediaCapture API for Windows Phone. Some developers have reported problems similar as mine. Has Microsoft dealt with this issue?
    I've spent quite a few weeks trying to investigate this problem, without actually knowing if it is my code that needs to be debugged. That's why I'm asking if other developers are facing similar problems.
    Thank you
    Edit: It seems that the crash/green screen can appear when suspending/switching to any app (regardless if it uses the camera or not). Also, all works fine when the app is running on the debugger.

  • Black and green screen keeps flashing in my video - please help

    i have a ..............
    and every time i try to export my video black and green screen keeps flashing in my video can any one help
    i think maby its bechuse im using a Macbook pro maby i need a better graphic card or much faster computer

    Thanks, I will try that after a couple of days. I want to make sure that my iPhone is completely dry inside.
    Anyone who knows how long it may take for an iPhone to dry inside after 2-3sec in water? Its in a bag of rice.

  • Seeing pink and green artifacts when using AIR 3.5 beta

    Hi,
    I'm noticing that, when using the 3.5 beta SDK, some display elements are being rendered with strange pink and green artifacts. Below are screenshots of this occurring (most prominently on the spark buttons) on three devices:
    Galaxy Tab (running android version 2.3.3)
    Cropped version (to make the problem more visible, in case the previous image was scaled down):
    Nexus 7 (running 4.1.1)
    Cropped:
    Galaxy Nexus (running 4.1.1)
    Cropped version:
    By contrast, here is a screenshot of the same application running on the Galaxy Nexus, when compiled for 3.4:
    Cropped:
    Any ideas on why this is happening?

    Same here on Galaxy Tab 1 and Galaxy S1 ! And no spark component here, only simple drawings...
    Incredible to see such a "visible" bug in this beta...

  • MBP 15" freezes with solid pink and green pixels running across display

    This happens every time I boot the machine. Randomly the machine will freeze and the display will show pink and green diagonal pixels running through whatever application is open.
    I'm guessing this is going to be a send back issue. Anybody know anything about this?
    I've had the machine for less than 12 hours and this is my first mac. This is very discouraging. Earlier I was furious because it makes the machine totally unusable.

    No, it's definitely not supposed to do that.
    Seeing as you can't do much until tomorrow - a couple of things you could try;
    a) check the ram is pushed all the way in.
    b) Create a new user account - test - and see if it persists there.
    b) If a and b doesn't work - try a full clean install of OSX. I once had a PB that did odd things out of the box but was ok after a clean install of OSX from a disc. I assumed the disc image was compromised.
    Best of luck

  • Black and green screen after water

    Well I did this huge accident by dropping my iPhone 5 into the toilet, but it was only in there for 2sec. I dried the phone and it was still working, but after a while it turned itself off. As a reaction, I hurried starting it again to check if it still was working and it was. But after that, my friend told me to turn the phone off again as soon as possible.
    When I got home, I placed the iphone in a bag of rice without any air in it, and waited over 24 hours to check it.
    When I checked it(which I think I did too early)- it worked, and I was so happy! Everything, the sound was just fine, but after a while it didn't respond to my touches and suddenly the screen became black and green pixle-ish and grumsy, but I could still see something in the background.
    I placed it back into the rice, but this time on my bathroom floor in a bag, because it's warmer there.
    I don't dare take it out before I know that most of the water is gone, but at the same time I don't know what the problem with the screen was. Is it possible to fix it? I think I maybe can get some help from a friend, but it would be nice if anyone knew what i could do, or what the problem is.
    I also read about people who got problem with black and green screen on their iPads. Everyone who read the thread had hit their iPads on the backside of the iPad and it got normal screen again.

    Thanks, I will try that after a couple of days. I want to make sure that my iPhone is completely dry inside.
    Anyone who knows how long it may take for an iPhone to dry inside after 2-3sec in water? Its in a bag of rice.

  • Blue and Green Screen

    Can you do blue screen and green screen things on Final Cut Pro? Don't tell me how because I don't own it. I just want to know if it's possible.

    www.dvgarage.com
    Look at DV Matte Pro...as another option.
    Shane

  • Video card for HD and green screen

    I use a windows XP64 based machine with a quad core I7 920 processor and 12 gigs of RAM with nVidia 260 card. I use CS3. Right now I am having severe crash issues in Premeire CS3.
    I do HD 1080i video editing with up to 4 layers of green screen. I currently use Adobe AE Keylight2 for my greenscreen work. I bring the files into Premeire with "Dynamic Link". I crash, and crash, and crash. What is my best option to prevent crashing. A Quadro video card? which one? . Or, Matrox Max. My budget is somewhat limited. I can't get both. I want to upgrade to CS5 but need to fix this problem, now.
    Sincere thanx to anyone who can help

    I appreciate the quick answer and am considering moving to Windows
    7 (64). What is the sad story about Matrox? What is the best way to speed
    up my rendering or processing without having to purchase another cpu? Thanx once again for your quick response. I render primarily to h.264

  • Cs3 HD and green screen

    I use a windows XP64 based machine with a quad core I7 920 processor and 12 gigs of RAM with nVidia 260 card. I use CS3. Right now I am having severe crash issues in Premeire CS3.
    I do HD 1080i video editing with up to 4 layers of green screen. I currently use Adobe AE Keylight2 for my greenscreen work. I bring the files into Premeire with "Dynamic Link". I crash, and crash, and crash. What is my best option to prevent crashing. A Quadro video card? which one? . Or, Matrox Max. My budget is somewhat limited. I can't get both. I want to upgrade to CS5 but need to fix this problem, now.
    Sincere thanx to anyone who can help

    I saw another message (may have been from you) with similar information
    Advice was that XP64 was/is not supported/tested for Premiere, and format the drive and use Windows 7 to install everything fresh
    My CS5/AVCHD 1st Impressions http://forums.adobe.com/thread/652694?tstart=0 has a link to my computer, which uses Win7 Pro 64bit with zero problems

  • Scaling and green screen in premiere cs5.5

    Some background.
    Years ago we used visual communicator pro to do some green screen shooting.  I frankly did not know what I was doing with the lighting, and got a lot of spill and shadow.  I've been looking for a way to fix this.  I recently bought cs5.5 to be able to do this with Ultra keyer.
    I also have VC 2.0 running on the same computer.
    Since I don't want to set the background, and since Pr does not know how to import visual communicator raw camera streams (please, does anyone know how to convert these into something that pr can handle)  , I decided on this course of action.
    I rendered the vidieos in VC using a synthetic green screen (basiclly a solid green image produced in painshop with a color fill).
    I have rendered videos with this, and they have a solid green background with a lot of shadows in .avi format.
    I have a background that was originally to be used with each clip.  The backgrounds are  smaller than the dvi resolution of the rendered videos, so need to be scaled.  They may eventually be replaced, but not right now.  I am trying to get these rendered into green screens.  i've watched a half dozen youtube videos and have gotten part way.
    What I have done is:
    Imported this image into pr as track 1 and the video as track 2.  stretched the image length to match the video track.
    I have dragged the garbage matt onto the video.  I have dragged ultra keyer onto the video.  I can play the green screen video.
    I need to scale the image. I've tried everything in all the adobe help files and nothing seems to work.  Clicking on the transform icon and twirling the scaling open, I cannot get the handles to appear around the image in the monitor window, no matter what I try.  If I change to the video window and twirl open ultra key and 8 point garbage map, and click on the transform button, the handles for the garbage matt do not appear.  If I click on the eyedropper, I can select the key color, but it doesn't take effect.
    I am sure this is pilot error,
    What am I doing wrong?

    I have it working.  The panel is the timeline.   In the effects menu you can click the double arrow and the timeline view opens up.  THEN it works.   Go figure.
    At this point I was able to render a video.  But even with a lot of tweaking of choke, alpha channel etc, I have not been able to get rid of the gray border around the figure.  It is there in the original rendering from VC and I was hoping to be able to get rid of it. So far no joy.  I did try using it as the key, but that got othe grays in the hair, so that is no good.   I wish where was sort of a spline garbage map that you could use to tighly outline a figure, and then the renderer would be able to track motion and keep the spline garbage map with the figure outline.  It would take a lot of computing but theoretically it could be done.  Or even an auto-trace feature like the one in the old corel draw, which would autotrace an image, making a vector spline out of it.  It would then be possible to create a mask that would follow the motion of the actor.
    The shadows and such are cleanly gone though.  So now if I can reproduce the ability to do this on another clip, I have a fighting chance.  It is sad that Adobe has abandoned VC pro.  The teleprompter was a nice feature.
    I imagine that I can simulate one using some other adobe tool, but I'll just have to play with it.  I can see that using a good digital camera on a green screen and shooting footage that way will be a better solution.  The only problem is that in the past 6 years since the footage was shot, my wife has aged a bit, so reshooting these shots and trying to combine the good ones with the bad ones, might not be as cohesive as one would like.
    I appreciate your time.  I still don't know exactly *what* I did that made it start working, but I am pretty sure it was opening the timeline in the effects window.

  • Suddenly lost color spectrum in CS5? all pinks and greens!

    I'm working in AI and PS CS5, and suddenly all my colors are various shades of hot pinks and neon green. Color libraries - all the same. It seems to be a bug within CS5 because I've got no problems with monitor or other programs. Any file opened in CS5 gives this result, yet they print fine. I've tried rebooting - same deal. It's as if it's somehow been set to half of CMYK? Any advice greatly appreciated!
    my config is CS5 on Windows XP 64bit

    Thank you, Mylenium!
    This has become a nightmare beyond anything I've experienced in my 10 years using this program. After following Wade's advice (and ignoring the sarcasm attached) I found myself in even further difficultly.
    I've now done a complete re-install of CS5, and am still experiencing the same issue. It's as is the Gamma is off. This happens in both AI and PS. After trying every research/expert forum I can come across, I am now wondering if this has anything to do with Windows XP 64-bit. I'm thinking I may need to revert back to an older OS.
    thanks again for any thoughts or advice!
    -Patti

  • Tutorial for Colour Correction and Green screen

    Anyone know of any good tips to remove the green look from white hair? or any tutorials I can read for colour correction with green screen?
    I filmed a getlemen who has white hair on a green screen. The colour of his hair picked up a slight tint of green and I need to remove it. Can anyone lend some sound advice.
    Thanks

    Your best chance is to study the manual carefully and to cycle through the chromakeying filters you have at your disposal. If you were using DV, you will probably need to purchase a far more capable keying application, one that compensates for DV's terrible chroma resolution.
    The books on the shelves at Borders and Barnes/Noble for After Effects and FCP will help you get the most from your existing key filters. You will ned up stacking several copies of your footage with different key settings. Without preproduction, the proper lighting, a good camera and adequate tape format, managingr a good chromakey in post is very difficult.
    google chromakey, too.
    bogiesan

Maybe you are looking for

  • Question regarding image and links tag

    Hi. Im new to podcasting and have just had my first podcast excepted on itunes. Im using garageband.com to store my audio file and copy & pasting the address into itunes to submit it. (http://www.garageband.com/user/wabel/podcast/main.xml) What i don

  • Calendar Third Sunday of February doesn't show the correct day in all years

    Calendar Third Sunday of February doesn't show the correct day in all years? The day of month repeats the same day as saturday. Example: February 20 2010= Saturday. Sunday shows 20 and not 21. February 19 2010= Saturday. Sunday shows 19 and not 20...

  • Opening associated files...

    I'm trying to associate files in windows with my application, so that a user can double click the file and have it open in my app. Currently Im doing this manually as a test. So basically I right click the file and select "Open With" and select my ap

  • JCO destination created but NOT showing up in SLD.

    We have a portal with a centralized SLD which is tested successfully. We created a JCO destination on the portal successfully. However, 1) we cannot test the new jco , all buttons are disabled except the "create" button; 2) if we click above "create"

  • Linking exturnal hardware to sync with logic

    hello, i require help with linking my yamaha rs7000 with logic so that logic triggers the rs7000 sounds. i've been trying for several hours to to record and have been having problems. i can use the rs7000 to trigger logic but for some reason the firs