flicker

C# - Moving a control to the mouse's position

Hello everybody. I am trying to get a control to follow the cursor when the user clicks and drag the control. The problem is that 1.) the control doesn't go to the mouse's position, and 2.) the control flickers and flies all over the place. I've tried a few different methods of doing this, but all so far have failed. I've tried: protec...

Flex 3 - Remove image flickering

Hello Community! I have an application with different components that are accessible through a viewstack in the main application. The main application looks like that: <Application> <Viewstack> <myComponent1/> <myComponent2/> <myComponent3/> . . . </Viewstack> </Application> In...

WPF - Pausing the UI Thread?

I have a tab control with draggable tabs. When the mouse is released it removes the selected tab from the tabControl and adds it to its new location. My problem is that the TabControl draws itself after removing the tab, and then again when adding the tab so there is a very noticeable flicker that shows the tab behind the tab being moved...

.NET DataGridViewLinkColumn flicker on hover on link

There's a flickering issue when using a DataGridViewLinkColumn. If you hover on a link, it gets redrawn with a flicker. Doublebuffering, or setting options like LinkBehavior: "NeverUnderline" doesn't seem to have any effect. What's causing it and can it be fixed ? ...

jQuery - Animation flicker using hover()

I have a setup as described in this question which works perfectly. Essentially a drop down menu grows when you move your mouse over it to expose more options. There is, however, a small issue. If you move the mouse outside of the #dropdown div and then back in again quickly it constantly fires the mouseenter and mouseleave events cau...

jQuery SlideDown Flickering in Firefox

Hi, once more a jQuery, Firefox flickering issue. (no flickering in IE6/7/8, Safari) I uploaded an example page here: http://sithlord.bplaced.net/testing/jquery_flickering/flickering.html There are two div containers. The inner div is the one I'm hiding. The outer one is the wraping container with the style elements. I found the flick...

How do I remove flickering from image loads in Flash? in Action script 3

Hi, I'm currently working on making a flash program that creates a movie out of a folder of images. There are buttons to control play, pause, stop, forward, reverse and the like. Its going great but when I play the sequence the image flicker from the loading time becomes almost seizure inducing. Each sequence is about 1000 images long...

iphone webkit css animations cause flicker

This is the iphone site: http://www.thevisionairegroup.com/projects/accessorizer/site/ After you click "play now" you'll get to a game. The guns will scroll in. You can scroll the purse and accessories up and down. You can see that when you let go they snap into place. Just as that snap happens, there's a flicker that occurs. The only w...

jqGrid flicker in IE when hover over certain elements in TD

The background color of the TDs are changed when javascript changes the class of the row to '.ui-state-highlight' There is a flicker when mouseout of DIVs and IMGs in the TD content, in IE, is there a way to prevent this flicker? ...

Flicker-free drawable ScrolledWindow

I'm trying to build a ScrolledWindow that you can draw on using the mouse, and it's working too, but I'm getting a nasty flicker when the user is drawing on the window while the scrollbars aren't in the "home" position.. To reproduce, run the attached program, scroll a bit down (or to the right) and "doodle" a bit by keeping the left mo...

Windows Forms/DatagridView Screen Flickering

Has anyone experienced a case where a .Net Windows Forms app caused severe desktop flicker? I have a Windows Forms app (.Net 3.5 , C#) with a datagridview in a usercontrol. Occasionally, while running other applications at the same time (I see it with Louts Notes, but the worst behavior is a user with Reuters Bridge Station) , switchin...

Background flicker problem in Internet Explorer

I have several pages with a background image applied to the body of each one of them (same background image for all pages). When I go from one page to another it looks like IE7 renders the image again, which looks like flickering. In Firefox 3.6.3 it does not flicker. How this flickering can be solved for IE ? ...

how to store large amount of photos and videos uploaded by user?

hello On you tube,facebook,flicker millions of photos and videos are uploaded by users so how they manage all such large uploads.i know that they have large space on their servers but i just want to ask that which technique they are using to store this kind of huge data? And also please suggest me to best way to get this kind of ...

Flickering in a Windows Forms app

I have an app that has a ton of controls on it. And it has a massive amount of flicker, particularly on startup. I applied the fix to it. protected override CreateParams CreateParams { get { CreateParams cp = base.CreateParams; cp.ExStyle |= 0x02000000; // WS_EX_COMPOSITED ...

ScrollTo horizontal problem- top div contents briefly show in bottom div on nav. click

I am using ScrollTo and LocalScroll on my single page site, which scrolls in all directions. I have four large divs inside a wrapper, two on top and two below those. Each div is a 'page' of the site. Onload, the page goes to the 'home' div anchor, at the bottom left of the window/page. My issue is that anytime I try to scroll horizonta...

c# FlowLayoutPanel scroll, background distorts + flickers

I have a windows form application that has a background. Within it, I have a flowlayoutpanel with a transparent background. When I scroll, the following happens: http://imgur.com/5fmTh.png I also see some flickering. I've tried all the doublebuffered business, and it doesn't work. Any suggestions? ...

Android fullscreen status bar flickers

My app runs in fullscreen fine, but when a alert dialog pops up the status bar flickers from under the fullscreen. Also when I try typing in the dialog popup it also makes the status bar flicker. The funny thing is it worked before, but I must have changed something and I don't remember what. To get fullscreen I am using this in the ma...

Internet explorer, jQuery: input box jumps/moves when being replaced with the exact same one

What I want: To, on focus, change one input box into another by hide() and show(). What I get: In Internet Explorer (7/8), the input box moves a few pixels to the right when focusing. Works well in other browsers (obviously). Here's a link to where I have re-created the problem: < link removed due to no longer beeing relevant > ...

Reduce Flicker of .NET FlowLayoutPanel

I'm clearing and adding multiple LinkLabel's to FlowLayoutPanel, every couple of seconds. It works fine, but flicker is quite noticeable. Is there any way to reduce it? I tried to set Form.DoubleBuffering, it didn't help. UPDATE: Managed by creating a custom control derived from FlowLayoutPanel and setting its styles as shown below: P...

Updating an ObservableCollection in WPF causes screen flicker; How can I prevent it?

I have an ObservableCollection bound to a WPFToolkit DataGrid in an MVVM pattern. Every 30 seconds I have a background thread that is querying a service for some data. When it returns, it marshals it to the UI thread and updates the ObservableCollection by first calling Clear() on the collection and then calling Add() for each item. When...