-
component flicker
I am working on a animated java menu. It works fantastic in internet explorer but flickers horribly in netscape.
The applet uses a custom layout manager and a daemon thread to size the buttons.
How can I eliminate the awefull netscape flicker?
I have overridden all my update( Graphics g ) methods to do nothing but it doesnt help in NS.
You can view the menu at
http://www.terracorps.com
D
-
Re: component flicker
If you haven't implemented double-buffering, try implementing it. It gives remarkable effect.
- UnicMan
http://members.tripod.com/unicman
-
Re: component flicker
I have already tried that.