flicker

as3 - controlling flicker when scaling up a button or movieclip

This is a situation I run into a lot but never seem to find a good solution. I have movieclips that I scale up slightly on rollover, but if you hover over the edge of the movieclip it just sits there and flickers, continuously receiving mouseOver and mouseOut events. How do you deal with this? Again, it's usually a problem when tweening ...

Flicker in ASP.NET when using MVC and YUI Datatable

link text Issue can be seen by clicking link text above... Hello - I'm a newbie to ASP.NET MVC and The Yahoo! User Interface libraries. I've created a page that has a simple table and used the YUI Datatable example to create a nicely formatted datatable from an HTML table that exists on the page. The problem is that when the page rende...

Why doesn't OS X have the same flickering problems that Windows does?

I was reading Larry Osterman's latest blog post about debugging a flickering problem in the Windows Vista/7 volume control, and I suddenly realized that I can't recall ever seeing an application flicker on my OS X laptop. Even applications that otherwise seem to be poorly written avoid the flicker problem in my experience. Without this...

How can I make my form resize more smoothly?

When resizing a form with many controls, the form looks bad because of flickering. What are some tips to have a smoother form resizing? ...

Android: ListView Flicker effect. Any hints on how to get rid of this?

For some reason, whenever I scroll through my list of items, the background inside my listview disappears and reappears giving rise to a "flicker" effect which I don't really want. I've tried the suggestion at: http://stackoverflow.com/questions/1377336/android-make-listview-transparent but it doesn't work for some reason. Any suggestion...

how to code for reducing flicker? need your help with code. win32 VC++ flicker

I'm trying to bitblt bitmap to mouse cursor position with the mouse movemont.but with flickering problems. I've read about double buffering to reduce flicker but I'm not sure how to ... this causes extreme flickering. I've read about double buffering to reduce flicker but I'm not sure how to implement it in this example. Please can you...

Stopping TextBox flicker during update

My WinForms application has a TextBox that I'm using as a log file. I'm appending text without the form flickering using TextBox.AppendText(string);, however when I try to purge old text (as the control's .Text property reaches the .MaxLength limit), I get awful flicker. The code I'm using is as follows: public static void AddTextToCo...

How do I suppress flicker from the webbrowser control in .Net, when it is resized?

Not all pages do this, but a good example would be youtube.com. Mostly if you are resizing the window larger, opposed to smaller. Lots of content flickers horribly in this case. I've seen some posts on the net attempt to claim sorts of double buffering will stop this, but I've yet to see any example of the proper implementation. Thank yo...

C# ListView in VirtualMode flickers when the selected item is not visible

I know it sounds complicated to reproduce but please follow me: You have a ListView in VirtualMode = true. Select an item, scroll down so that the item selected gets outside the visual area and then try to add another item to the ListView. You will see that for a split second it behaves abnormally and see somekind of flicker. If you e...

[Java] How to get rid of the flicker that appears during my animation ?

Hi, I'm learning Java by making a small game in a JApplet. I got a little problem with my sprite's animation. Here is the code : this.sprite.setBounds(0,0,20,17); this.sprite.setIcon(this.rangerDown); for(int i = 0; i< 16;i++) { this.sprite.setBounds(this.sprite.getX(), this.sprite.getY()+1, 20, 17); this.sprite.update(this.s...

how to avoid flickering when changing the source of an mx:Image in flex

Hi, in my mxml file I have images declared like this: <mx:Image x="0" y="0" source="assets/bigpicture.png" id="picture1"/> and at some event I do: picture1.source = "assets/bigpicture2.png"; However this results in flex removing the picture, and when it has loaded it will show it again. How can I make the mx:image make so that it...

Setting ShowInTaskBar = False, causes flicker when closing modeless form in .net, winforms

To recreate this behaviour, you need to create a pop-up form with the following properties: (1) ShowInTaskBar = False (2) Display the form with the Show method and loop until the form is not Visible. (3) In order to close the form when the mouse is clicked out of it, override OnDeactivate, and set visible to False. Next, create anoth...

DIV show-hide flickering in IE only

Hi, I've got a problem with showing images triggered by a MouseOver (see: http://camera.vu.nl/v2) In Safari and Firefox it's ok. In IE when you move of the text onto the Visible background layer with the blob-image, the layer is turned on and off leading to flickering. I build it using the standard options in Dreamweaver CS4. Can anyone...

Win32 Text Drawing Puzzle

Hello :) I've got a little text drawing puzzle under Win32. I'm trying to draw some instructions for users of my application at the top of the window. Please refer to the following window (I've changed the background color on the text so you can see the boundaries) I'm currently using DrawTextEx to draw the text to my window, but th...

How do I keep a wx.html.HtmlWindow at the same position during resize (without flicker)?

I want to be able to resize an html window but keep the scroll position. This example almost works, but flickers. To test: - load a good sized html file using the Load Html File button - scroll down - resize the window. The window keeps its same position through resizes, but it flickers horribly. The code for htmlwindow is resetting t...

Firefox jquery scrollTo flicker bug

I've seen quite a few threads here talking about flickering in Firefox, but none that quite describe the problem I'm having. I've got a horizontal scrolling website, fixed position menus, and the jquery plugin .scrollTo handling next and previous buttons. This works great in Chrome and Safari (don't know about IE), but in Firefox there...

jQuery color plugin: onMouseOver animation causes flickering in FF3.5.5

I'm trying to change the background color of a div on mouseover and mouseout. Instant change to yellow on MouseOver, and slow fade on MouseOut. function hilightel(keydiv) { $('#'+keydiv).animate({ backgroundColor: '#ffffd3' },1); } function lolightel(keydiv) { $('#'+keydiv).animate({ backgroundColor: '#ffffff...

Win32 GUI flickering on resize

I have a Win32 GUI program with a tab control, each tab having a list view control. There is massive flickering whenever the window is resized. I've tried the following things: Handling WM_ERASEBKGND in the main wndproc and returning TRUE. No effect. Filtering out all WM_ERASEBKGND messages in the event loop. No effect. Setting the WM_...

How to prevent rows in datagrid from flickering while application is running

In the application I'm developing at the moment I'm using a datagridview to display data. To fill it, I've to press a button and a backgroundworker will start running, it will fill a datatable and when it's finished running it will use the datatable as the datasource for the datagrid. This works fine, the UI stays responsive et cetera. B...

jQuery Flicker/Flash Animation

Does anyone know of a neat jQuery effect that will make an image randomly flicker or flash? Most of the posts on here are "how to stop flickering" etc, so it's pretty hard to find anything about actually making the image flicker ON PURPOSE. ...