Click to See Complete Forum and Search --> : component flicker


deft
September 28th, 2000, 04:23 AM
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

unicman
October 1st, 2000, 04:03 PM
If you haven't implemented double-buffering, try implementing it. It gives remarkable effect.

- UnicMan
http://members.tripod.com/unicman

deft
October 1st, 2000, 06:43 PM
I have already tried that.