White rectangle on screen

Just showed up today. Near teh middle of the screen an odd small rectangle in on teh screen, regardless of what window is open it is always on top and has a small black shadow on screen. whats the deal?

Hello Tempelaffe,
It sounds like you get this whit rectangle in the screen shot out of nowhere, but it goes away when you restart the computer. I would start by performing a Safe Boot, and then resetting your PRAM in that order. Due to the nature of the issue, try it out for a while to see how it goes.
OS X: What is Safe Boot, Safe Mode?
http://support.apple.com/kb/HT1564?viewlocale=en_US
Starting up in Safe Mode
To start up into Safe Mode (to Safe Boot), follow these steps.
Be sure your Mac is shut down.
Press the power button.
Immediately after you hear the startup tone, hold the Shift key.
The Shift key should be held as soon as possible after the startup tone, but not before the tone.
Release the Shift key when you see the gray Apple logo and the progress indicator (looks like a spinning gear).
After the logo appears, you should see a progress bar during startup. This indicates that your computer is performing a directory check as part of Safe Mode.
To leave Safe Mode, restart your computer without holding any keys during startup.
And:
About NVRAM and PRAM
http://support.apple.com/kb/ht1379
Shut down your Mac.
Locate the following keys on the keyboard: Command (⌘), Option, P, and R. You will need to hold these keys down simultaneously in step 4.
Turn on the computer.
Press and hold the Command-Option-P-R keys before the gray screen appears.
Hold the keys down until the computer restarts and you hear the startup sound for the second time.
Release the keys.
After resetting NVRAM or PRAM, you may need to reconfigure your settings for speaker volume, screen resolution, startup disk selection, and time zone information.
Thank you for using Apple Support Communities.
All the best,
Sterling

Similar Messages

  • White rectangle on screen with beachball

    Hi all,
    now and then i get a white rectangle on my screen. I can not delet it or move it or do anything with it. I don´t know why or when it appears. But if its there, i can not undo it. When i restart, its gone.
    Does anybody have an idea what that can be?
    Pleas help me.
    Thanks
    Tempelaffe

    Hello Tempelaffe,
    It sounds like you get this whit rectangle in the screen shot out of nowhere, but it goes away when you restart the computer. I would start by performing a Safe Boot, and then resetting your PRAM in that order. Due to the nature of the issue, try it out for a while to see how it goes.
    OS X: What is Safe Boot, Safe Mode?
    http://support.apple.com/kb/HT1564?viewlocale=en_US
    Starting up in Safe Mode
    To start up into Safe Mode (to Safe Boot), follow these steps.
    Be sure your Mac is shut down.
    Press the power button.
    Immediately after you hear the startup tone, hold the Shift key.
    The Shift key should be held as soon as possible after the startup tone, but not before the tone.
    Release the Shift key when you see the gray Apple logo and the progress indicator (looks like a spinning gear).
    After the logo appears, you should see a progress bar during startup. This indicates that your computer is performing a directory check as part of Safe Mode.
    To leave Safe Mode, restart your computer without holding any keys during startup.
    And:
    About NVRAM and PRAM
    http://support.apple.com/kb/ht1379
    Shut down your Mac.
    Locate the following keys on the keyboard: Command (⌘), Option, P, and R. You will need to hold these keys down simultaneously in step 4.
    Turn on the computer.
    Press and hold the Command-Option-P-R keys before the gray screen appears.
    Hold the keys down until the computer restarts and you hear the startup sound for the second time.
    Release the keys.
    After resetting NVRAM or PRAM, you may need to reconfigure your settings for speaker volume, screen resolution, startup disk selection, and time zone information.
    Thank you for using Apple Support Communities.
    All the best,
    Sterling

  • MacBook Pro 13", late 2013. At First a translucent White rectangle  appeared on screen. One day later the entire screen became white and I can't see anything else.ô

    MAcBook-Pro, 13", 2013 with OS X 10.10 (Yosemite).. At first a translucent white rectangle appeared on the screen. One day latter tthe entire screen turns white and nothing else can be seen.

      Reset PRAM.   http://support.apple.com/kb/PH18761
    Reset SMC.     http://support.apple.com/kb/HT3964
    Choose the method for:
    "Resetting SMC on portables with a battery you should not remove on your own".
      Start up in Safe Mode.  http://support.apple.com/en-us/HT1564
    Best.

  • White rectangle on Safari screen

    When I bring up the Safari screen there is a white rectangle that blocks whatever I bring up with Google. I can't get rid of it. This has only started recently. Anybody know how I can eliminate this?

    Sounds odd. You should try a reset first (hold the Home and Sleep/Wake buttons down together until you see the Apple logo then release. If that doesn't do it, then you will need to restore the iPod (via iTunes).

  • REPOST: White Rectangle Before Splash Screen

    I reposted this topic because the last one got too long and full of code without any progress towards a solution. I'm trying to show a splash screen without the white rectangle flashing first. I tried placing the setVisible(true) statement at the end of my splash screen code, no luck. There has got to be some way to stop the white screen from appearing until the image has loaded!! By the way, my image is only 5 KB! If that's too big, something is definitely wrong.
    I believe the problem lies in the following code...
    public void start()
    Thread thread = new Thread()
    public void run()
    Runnable run = new Runnable()
    public void run()
    try
    Thread.sleep(3000);
    catch(Exception e)
    dispose();
    setVisible(true);
    SwingUtilities.invokeLater(run);
    thread.start();
    Previous posting...
    http://forums.java.sun.com/thread.jsp?forum=57&thread=268231

    Hey mtnkid420,
    If you had to painfully concede to the white screen that flashes up, I empathise with you. I have the solution for you now, albeit 3 years late - posting also for those who are currently mythed by the pre-splash white screen.
    It was the suggestion, although rebutted, that loading larger images causes the problem. If the diagnosis was correct, the usual solution would be to load and draw the image off-screen i.e. to a BufferedImage... and you know what, it worked.
    Here is a code snippet if required:
         private Splash(int displayTime, Class application)
         throws IllegalArgumentException, SecurityException, IllegalAccessException,
         NoSuchFieldException, IOException, InterruptedException
              this.displayTime = displayTime;
              splashPath = String.valueOf(application.getField("SPLASH_PATH").get(null));
              URL splashURL = application.getClassLoader().getResource(splashPath);
              Image img = ImageIO.read(splashURL);
              MediaTracker tracker = new MediaTracker(this);
              tracker.addImage(img, 1);
              tracker.waitForID(1);
              splashImage = new BufferedImage(500, 300, BufferedImage.TYPE_INT_ARGB);
              Graphics g = splashImage.getGraphics();
              g.drawImage(img, 0, 0, 500, 300, this);
              setSize(500, 300);
              setLocationRelativeTo(null);
              splash();
         } // end primary constructor
         public void paint(Graphics g)
              g.drawImage(splashImage, 0, 0, this);
         } // end paintThis code will not compile as is, but it serves the purpose to illustrate BufferedImage usage.
    Warm regards,
    Darren B

  • White Rectangle Before Splash Screen

    I'm trying to show a splash screen without the white rectangle flashing first. I've explored the forums and found a lot of information on the subject but no solutions posted. Any ideas??

    by the way this is how iam using to display my splash
    private static void splash()
    th.start(); // I sleep to let the thread startup and display the window
    while (splash3.getWindow() == null || !splash3.getWindow().isShowing())
    try {
    Thread.sleep(2000);
    catch (InterruptedException e){}
    }splash3 is an instance of my class file containing this code
    import javax.swing.*;
    import java.awt.*;
    public class Splash implements Runnable, mainInterface{
    private String initMsg;
    public Splash(String initMsg) {
    this.initMsg = initMsg;
    public void run() {
    splashWindow.getContentPane().add(l, BorderLayout.CENTER);
    splashWindow.pack();
    splashWindow.setSize(splashWindow.getSize().width, splashWindow.getSize().height);
    splashWindow.setLocation(dim.width/2 - splashWindow.getWidth() /2,dim.height/2 -
    splashWindow.getHeight()/2);
    splashWindow.toFront();
    splashWindow.show(); }
    public JWindow getWindow()
    return splashWindow;
    }hope this is of some help
    asrar

  • White rectangle when composing email

    Sometimes, when the iPhone is in landscape mode, the mail app shows a white rectangle to the right of the screen. It looks like the space that would be occupied by the virtual keyboard if the phone was in portrait orientation. Text typed into the message is entered correctly, but not seen because it is clipped by this white rectangle.
    This has been hard to reproduce, so I was wondering if anyone else experienced this.
    Thanks for any replies,
    ++aldo

    I eventually got Rich Text Editor to work; however it loaded VERY slowly-like almost one minute to load.
    I stopped using Roadrunner mail in general because of a number of other issues that made it very cumbersome to use. I went to Yahoo mail and have not had any issues.

  • White rectangle at startup

    Hi, after the splash screen i see a white rectangle in the up-left corner. It evanesces after about 5seconds.
    Do you know what's it? tanks

    quarkup wrote:
    I got the same issues, i am using kde 4.3
    nvidia 6800 go (the latest drivers)
    therefore is not a problem of intel video driver.
    I've kde 4.3 too, do you have the plasmoid for view folder on desktop? or some plasmoid with superkaramba?

  • Cursor is trapped in white rectangle (in windows) when trying to exit certain programs

    I recently installed windows 8.1 using bootcamp 5 onto my 2011 macbook pro that's running on mavericks.  I really only wanted it so I would be able to play some old pc games through steam.  The install seemed to go pretty smooth but I ran into a huge problem when I actually opened a game.
    I'm not sure if it's a problem with windows or steam, but every time I go to play a game it works just fine until i go to save and close it out, then a big white rectangle appears and seems to trap my cursor so that I cant do anything at all.  After some fooling around I was able to get the game to close, but the white rectangle was still there on the desktop screen and wouldn't allow my cursor to go anywhere.  I tried swapping to the space with the live tiles, and the white rectangle didn't appear there, but mouse was still acting like it was.  I had to restart my laptop for this problem to finally go away. 
    does anyone know what might be the cause or suggestions on how to fix this?? thanks!

    The issue mysteriously resolved itself. I shut down the computer, and the next day I booted back up and tried to open the same file, and everything was OK. Very bizarre, since I had opened it previously on this same MacBook. Anyway, anyone have any insight into what happened?

  • Pink & white rectangle seen at Firefox startup

    Hi,
    I'll try to give as much info as possible. About a week ago I began to see the image of a pink background with a white rectangle whenever I started up Firefox. It appears very briefly. Is this a normal thing to happen?
    I wonder if the image that appears has anything to do with spyware, and would welcome anyone's knowledge regarding this. I am 100% certain my computer is hacked due to the fact that the cursor on my screen is frequently moved by someone other than myself who has access to my computer. I'm in a work group, am not very computer knowledgeable as far as preventing hacking, and don't know much about networks or how to permanently remove myself from the Work Group and avoid being hacked.
    Before the new appearance of the image I described at Firefox startup, I could frequently close Firefox, open Task Manager, click on Show Processes From All Users, and see an instance of Firefox still running. This gave me the option of ending the process, which I think was indicative of the presence of the hacker. I can no longer do this because the second instance of Firefox no longer appears in the Task Manager. It was at best a temporary fix anyway.
    I appologize if this issue is better suited to another kind of forum, but I'd at least like to know if the image on my screen of the pink background with the white rectangle is a normal part of Firefox startup. I'd be grateful for any help.
    Thanks.

    quarkup wrote:
    I got the same issues, i am using kde 4.3
    nvidia 6800 go (the latest drivers)
    therefore is not a problem of intel video driver.
    I've kde 4.3 too, do you have the plasmoid for view folder on desktop? or some plasmoid with superkaramba?

  • Upgraded libva,xvba-video, mplayer-vaapi: white rectangles in a movie

    hi,
    today I upgraded libva from repo, xvba-video from AUR and recompiled mplayer-vaapi. With mplayer option `-vo gl' movie plays fine, but with `-vo vaapi:gl' (that's why I have mplayer-vaapi) instead of subtitles there are white rectangles (see picture). What's wrong?
    Thanks
    here's mplayer output (msglevel=all=6, vo=vaapi:gl, ):
    MPlayer SVN-r31303-4.5.0 (C) 2000-2010 MPlayer Team
    CPU vendor name: GenuineIntel max cpuid level: 10
    CPU: Intel(R) Core(TM)2 CPU 6400 @ 2.13GHz (Family: 6, Model: 15, Stepping: 2)
    extended cpuid-level: 8
    extended cache-info: 134242368
    Detected cache-line size is 64 bytes
    CPUflags: MMX: 1 MMX2: 1 3DNow: 0 3DNowExt: 0 SSE: 1 SSE2: 1 SSSE3: 1
    Compiled with runtime CPU detection.
    get_path('codecs.conf') -> '/home/cinan/.mplayer/codecs.conf'
    Reading /home/cinan/.mplayer/codecs.conf: Can't open '/home/cinan/.mplayer/codecs.conf': No such file or directory
    Reading /etc/mplayer/codecs.conf: 154 audio & 334 video codecs
    Configuration: --prefix=/usr --enable-runtime-cpudetection --disable-gui --disable-arts --disable-liblzo --disable-speex --disable-openal --disable-fribidi --disable-libdv --disable-musepack --disable-esd --disable-mga --enable-xvmc --language=all --confdir=/etc/mplayer --extra-cflags=-fno-strict-aliasing --enable-vaapi
    CommandLine: '/media/data/download/V.2009.S01E04.Its.Only.the.Beginning.HDTV.XviD-FQM.avi'
    init_freetype
    Using MMX (with tiny bit MMX2) Optimized OnScreenDisplay
    get_path('fonts') -> '/home/cinan/.mplayer/fonts'
    Using nanosleep() timing
    get_path('input.conf') -> '/home/cinan/.mplayer/input.conf'
    Parsing input config file /home/cinan/.mplayer/input.conf
    Input config file /home/cinan/.mplayer/input.conf parsed: 54 binds
    Setting up LIRC support...
    mplayer: could not connect to socket
    mplayer: No such file or directory
    Failed to open LIRC support. You will not be able to use your remote control.
    get_path('V.2009.S01E04.Its.Only.the.Beginning.HDTV.XviD-FQM.avi.conf') -> '/home/cinan/.mplayer/V.2009.S01E04.Its.Only.the.Beginning.HDTV.XviD-FQM.avi.conf'
    Playing /media/data/download/V.2009.S01E04.Its.Only.the.Beginning.HDTV.XviD-FQM.avi.
    get_path('sub/') -> '/home/cinan/.mplayer/sub/'
    [file] File size is 367449578 bytes
    STREAM: [file] /media/data/download/V.2009.S01E04.Its.Only.the.Beginning.HDTV.XviD-FQM.avi
    STREAM: Description: File
    STREAM: Author: Albeu
    STREAM: Comment: based on the code from ??? (probably Arpi)
    LAVF_check: AVI format
    AVI file format detected.
    list_end=0x146
    ======= AVI Header =======
    us/frame: 41708 (fps=23.976)
    max bytes/sec: 0
    padding: 0
    MainAVIHeader.dwFlags: (272) HAS_INDEX IS_INTERLEAVED
    frames total: 59292 initial: 0
    streams: 2
    Suggested BufferSize: 0
    Size: 624 x 352
    ==========================
    list_end=0xD4
    ==> Found video stream: 0
    [aviheader] Video stream found, -vid 0
    ====== STREAM Header =====
    Type: vids FCC: XVID (44495658)
    Flags: 0
    Priority: 0 Language: 0
    InitialFrames: 0
    Rate: 23976024/1000000 = 23.976
    Start: 0 Len: 59292
    Suggested BufferSize: 127506
    Quality 0
    Sample size: 0
    ==========================
    Found 'bih', 40 bytes of 40
    ======= VIDEO Format ======
    biSize 40
    biWidth 624
    biHeight 352
    biPlanes 1
    biBitCount 24
    biCompression 1145656920='XVID'
    biSizeImage 658944
    ===========================
    Regenerating keyframe table for MPEG-4 video.
    list_end=0x146
    ==> Found audio stream: 1
    [aviheader] Audio stream found, -aid 1
    ====== STREAM Header =====
    Type: auds FCC: (0)
    Flags: 0
    Priority: 0 Language: 0
    InitialFrames: 0
    Rate: 48000/1152 = 41.667
    Start: 0 Len: 103039
    Suggested BufferSize: 0
    Quality 0
    Sample size: 0
    ==========================
    Found 'wf', 30 bytes of 18
    ======= WAVE Format =======
    Format Tag: 85 (0x55)
    Channels: 2
    Samplerate: 48000
    avg byte/sec: 16000
    Block align: 1152
    bits/sample: 16
    cbSize: 12
    mp3.wID=1
    mp3.fdwFlags=0x2
    mp3.nBlockSize=1152
    mp3.nFramesPerBlock=1
    mp3.nCodecDelay=0
    ==========================================================================
    list_end=0x16A
    hdr=Software size=16
    Software : transcode-1.0.4
    list_end=0x15BF3432
    Found movie at 0x800 - 0x15BF3432
    Reading INDEX block, 162331 chunks for 59292 frames (fpos=364852282).
    AVI index offset: 0x0 (movi=0x800 idx0=0x800 idx1=0x11C66)
    Auto-selected AVI video ID = 0
    Auto-selected AVI audio ID = 1
    AVI: Searching for audio stream (id:1)
    XXX initial v_pts=0.000 a_pos=0 (0.000)
    AVI video size=322223780 (59292) audio size=41298048 (103039)
    VIDEO: [XVID] 624x352 24bpp 23.976 fps 1042.4 kbps (127.2 kbyte/s)
    Auto-selected AVI audio ID = 1
    [V] filefmt:3 fourcc:0x44495658 size:624x352 fps:23.976 ftime:=0.0417
    Clip info:
    Software: transcode-1.0.4
    get_path('sub/') -> '/home/cinan/.mplayer/sub/'
    [file] File size is 36608 bytes
    STREAM: [file] /media/data/download/V S01E04.srt
    STREAM: Description: File
    STREAM: Author: Albeu
    STREAM: Comment: based on the code from ??? (probably Arpi)
    SUB: Detected subtitle file format: subviewer
    SUB: opened iconv descriptor.
    SUB: closed iconv descriptor.
    SUB: Read 503 subtitles, 0 bad line(s).
    SUB: Adjusted 84 subtitle(s).
    SUB: Added subtitle file (1): /media/data/download/V S01E04.srt
    [vo_vaapi] Using OpenGL rendering
    X11 opening display: :0.0
    vo: X11 color mask: FFFFFF (R:FF0000 G:FF00 B:FF)
    vo: X11 running at 1680x1050 with depth 24 and 32 bpp (":0.0" => local display)
    [x11] Detected wm supports NetWM.
    [x11] Detected wm supports FULLSCREEN state.
    [x11] Detected wm supports ABOVE state.
    [x11] Detected wm supports BELOW state.
    [x11] Current fstype setting doesn't honour any X atoms
    libva: libva version 0.31.1-sds1
    Xlib: extension "XFree86-DRI" missing on display ":0.0".
    libva: va_getDriverName() returns 0
    libva: Trying to open /usr/lib/va/drivers/fglrx_drv_video.so
    libva: va_openDriver() returns 0
    ==========================================================================
    Opening video decoder: [ffmpeg] FFmpeg's libavcodec codec family
    [VD_FFMPEG] VA API accelerated codec.
    Unsupported PixelFormat 61
    [VD_FFMPEG] Trying pixfmt=1.
    [ffmpeg] aspect_ratio: 0.000000
    VDec: vo config request - 624 x 352 (preferred colorspace: MPEG-4 VA-API Acceleration)
    Trying filter chain: vo
    VDec: using MPEG-4 VA-API Acceleration as output csp (no 0)
    Movie-Aspect is undefined - no prescaling applied.
    VO Config (624x352->624x352,flags=0,'MPlayer',0x56410020)
    VO: [vaapi] 624x352 => 624x352 MPEG-4 VA-API Acceleration
    VO: Description: VA API with X11
    VO: Author: Gwenole Beauchesne <[email protected]>
    [vo_vaapi] Using 1:1 VA surface mapping
    FATAL: Cannot initialize video driver.
    Unsupported PixelFormat 61
    [VD_FFMPEG] Trying pixfmt=0.
    [ffmpeg] aspect_ratio: 0.000000
    Unsupported PixelFormat 61
    VDec: vo config request - 624 x 352 (preferred colorspace: Unknown 0x0000)
    Trying filter chain: vo
    Could not find matching colorspace - retrying with -vf scale...
    Opening video filter: [scale]
    SwScale params: -1 x -1 (-1=no scaling)
    Trying filter chain: scale vo
    The selected video_out device is incompatible with this codec.
    Try appending the scale filter to your filter list,
    e.g. -vf spp,scale instead of -vf spp.
    [VD_FFMPEG] Trying pixfmt=2.
    [ffmpeg] aspect_ratio: 0.000000
    VDec: vo config request - 624 x 352 (preferred colorspace: MPEG-4 Part 2 VDPAU acceleration)
    Trying filter chain: vo
    Could not find matching colorspace - retrying with -vf scale...
    Opening video filter: [scale]
    SwScale params: -1 x -1 (-1=no scaling)
    Trying filter chain: scale vo
    The selected video_out device is incompatible with this codec.
    Try appending the scale filter to your filter list,
    e.g. -vf spp,scale instead of -vf spp.
    [VD_FFMPEG] Trying pixfmt=3.
    [ffmpeg] aspect_ratio: 0.000000
    VDec: vo config request - 624 x 352 (preferred colorspace: Planar YV12)
    Trying filter chain: vo
    VDec: using Planar YV12 as output csp (no 2)
    Movie-Aspect is undefined - no prescaling applied.
    VO Config (624x352->624x352,flags=0,'MPlayer',0x32315659)
    VO: [vaapi] 624x352 => 624x352 Planar YV12
    VO: Description: VA API with X11
    VO: Author: Gwenole Beauchesne <[email protected]>
    INFO: libavcodec init OK!
    Selected video codec: [ffodivx] vfm: ffmpeg (FFmpeg MPEG-4)
    ==========================================================================
    ==========================================================================
    Opening audio decoder: [mp3lib] MPEG layer-2, layer-3
    dec_audio: Allocating 4608 + 65536 = 70144 bytes for output buffer.
    mp3lib: using SSE optimized decore!
    MP3lib: init layer2&3 finished, tables done
    MPEG 1.0, Layer III, 48000 Hz 128 kbit Stereo, BPF: 384
    Channels: 2, copyright: No, original: Yes, CRC: No, emphasis: 0
    AUDIO: 48000 Hz, 2 ch, s16le, 128.0 kbit/8.33% (ratio: 16000->192000)
    Selected audio codec: [mp3] afm: mp3lib (mp3lib MPEG layer-2, layer-3)
    ==========================================================================
    Building audio filter chain for 48000Hz/2ch/s16le -> 0Hz/0ch/??...
    [libaf] Adding filter dummy
    [dummy] Was reinitialized: 48000Hz/2ch/s16le
    [dummy] Was reinitialized: 48000Hz/2ch/s16le
    Trying preferred audio driver 'alsa', options '[none]'
    alsa-init: requested format: 48000 Hz, 2 channels, 9
    alsa-init: using ALSA 1.0.23
    alsa-init: setup for 1/2 channel(s)
    alsa-init: using device default
    alsa-init: pcm opened in blocking mode
    alsa-init: got buffersize=32768
    alsa-init: got period size 1024
    alsa: 48000 Hz/2 channels/4 bpf/32768 bytes buffer/Signed 16 bit Little Endian
    AO: [alsa] 48000Hz 2ch s16le (2 bytes per sample)
    AO: Description: ALSA-0.9.x-1.x audio output
    AO: Author: Alex Beregszaszi, Zsolt Barat <[email protected]>
    AO: Comment: under developement
    Building audio filter chain for 48000Hz/2ch/s16le -> 48000Hz/2ch/s16le...
    [dummy] Was reinitialized: 48000Hz/2ch/s16le
    [dummy] Was reinitialized: 48000Hz/2ch/s16le
    Starting playback...
    Increasing filtered audio buffer size from 0 to 34816
    [ffmpeg] aspect_ratio: 1.772727
    VDec: vo config request - 624 x 352 (preferred colorspace: Planar YV12)
    Trying filter chain: vo
    VDec: using Planar YV12 as output csp (no 2)
    Movie-Aspect is 1.77:1 - prescaling to correct movie aspect.
    VO Config (624x352->624x352,flags=0,'MPlayer',0x32315659)
    VO: [vaapi] 624x352 => 624x352 Planar YV12
    VO: Description: VA API with X11
    VO: Author: Gwenole Beauchesne <[email protected]>
    *** [vo] Allocating (slices) mp_image_t, 624x352x12bpp YUV planar, 329472 bytes
    *** [vo] Allocating (slices) mp_image_t, 624x352x12bpp YUV planar, 329472 bytes
    Unicode font: 654 glyphs.
    Unicode font: 654 glyphs.
    *** [vo] Allocating (slices) mp_image_t, 624x352x12bpp YUV planar, 329472 bytes
    Uninit audio filters... 0.004 ct: -0.026 28/ 28 12% 8% 0.5% 1 0
    [libaf] Removing filter dummy
    Uninit audio: mp3lib
    Uninit video: ffmpeg
    alsa-uninit: pcm closed
    vo: uninit ...

    The frame at which I've pressed F stays on the screen until I return to fullscreen.
    By the way, vaapi also makes subtitles look bad. They're very low quality in fullscreen, very blurred. With vaapi disabled they look fine. I remember I've had this problem before, but now I can't find my old config nor the solution. I think it had something to do with mplayer not scaling subtitles size when entering fullscreen...

  • Strange white rectangle on the desktop

    Only just started doing this, but when Bridge is running, there's a white rectangle on the desktop, which goes away when Bridge (CS3) is quit. This happening to anyone else??

    It definitely does matter. Like I mentioned earlier, when you have a fixed width of 1,000px for your content container, your 100% width setting for your outer container will be ignored - which means priority is given to 1,000px thereby rendering the whitespace to the right as your background is again a 128px square image. One solution I can think of is to make your background image 1x1px square that you can repeat. See if this makes any difference.'
    My site, the autoscroller - I didn't use any plug-in as such. I simply used scrollTop from jQuery API and changed the settings to match . You can read about it here: http://api.jquery.com/scrollTop/
    Here's my actual function that I'm calling when a menu button is pressed to scroll the div ID associated with it to scroll to Top of the screen. Again, this works for me, as my menu is fixed to the top, unlike your site where each site has a menu bar.
    $('ul#menu li a').click(function(){
                   var id = $(this).attr("href");
                   $('html,body').animate({scrollTop: $("div"+id).offset().top},'slow');
         return false;
    $('a#link').click(function(){
                   var id = $(this).attr("href");
                   $('html,body').animate({scrollTop: $("div"+id).offset().top},'slow');
         return false;

  • Strange white rectangles appear behind "menu commands"

    When I hover over the menu commands in Photoshop or Illustrator (both CS2), white rectangles appear behind the Menu Commands and so cluttering the otherwise nice GUI. As I experienced this before on another computer but still have no clue what is going wrong could someone give me a clue what's going on here? I am using Windows XP Service Pack 2.
    kind regards,
    tomasio

    can you show a screen shot? try http://www.pixentral.com upload the screen shot and copy the url in your address bar to a post here.
    from your description it SOUNDS like it might be a display driver issue, but it's hard to tell. a screen shot might help someone nail it.
    might as well try updating your video driver to see if there's anything newer out there than what you're currently running.

  • Ipad mini is snowy with a white rectangle across it after downloading an upgrade to some golf game. what to do?

    The iPad mini screen went snowy with a white rectangle across the top after downloading an upgrade to a golfing game. We deleted the app, restarted it. It worked for a few minutes, but is back to snow and white rectangle. iPad mini with 128 gb memory; iOS 7.01 or whatever the latest is

    Hi jamiefromoxnard,
    Welcome to the Apple Support Communities!
    If you have deleted the application and restarted the iPad, you have already done some great troubleshooting. The next step I would suggest in this situation is a reset. The following article will explain how to reset.
    Turn your iOS device off and on (restart) and reset
    http://support.apple.com/kb/ht1430
    If the reset doesn’t resolve the situation, you may need to restore your iPad. The following article will provide information for backing up your data and restoring the device.
    iOS: Back up and restore your iOS device with iCloud or iTunes
    http://support.apple.com/kb/ht1766
    Have a great day,
    Joe

  • I3 X window flicker (white rectangles)

    X windows in i3 WM flicker upon opening or resizing.
    By flicker I mean white rectangles that appear on screen for about one millisecond and disappear instantly.
    There's usually more than one white rectangle per window.
    (I can only see the flicker in windows that don't have white background/basis like shell emulator)
    (urxvt is not affected)
    Thanks for any help.

    Thank you for your answer.
    http://forums.devshed.com/java-help-9/two-rectangles-i
    n-same-window-with-thread-problem-336078.html

Maybe you are looking for

  • Acrobat XI Pro - Never purchased XI - but have two on PC

    I own Creative Suite 6.  I joined Cloud and downloaded Acrobat XI Pro. Now I have two versions of Actrobat XI - one much smaller than the other.  Please see screenshot. I never purchased the Desktop Version of Acrobat XI Pro ... so how could I have t

  • Message Processing through Advanced Adapter Engine

    Hi All I am trying to design a high volume asynchronous interface through AAE .  The scenario is File to ABAP server proxy . I have few questions about AAE processing with Sender File and Receiver Soap adapter. 1) Suppose if I have 50,000 transaction

  • How to show Summary label it in the first column of the sheet?

    Hi Gurus, I am wondering if i could show the Label of summary items in the first column instead of showing it along with the Summary data. As with the long worksheets if the summary column is at far right it doesn't look good and not readable too. Th

  • Choose not to include a song in 'shuffle' function

    I used to be able to select particular songs which would not get included in random shuffle. I could play all the music on my ipod randomly but avoid playing non-music items on my ipod like audiobooks, iTrip station settings, etc. Can the latest vers

  • What to do when clicking on photos only minimizes the screen?

    I downloaded lots of photos yesterday (300+) and now I can't work with the application.  When I click on any photo, or any folder, or anything in iPhoto, the whole page simply moves off the screen. I can bring it back up but still can't get anything