Manoj
Manoj

Reputation: 374

How to get rid of the white rectangle flashing that occurs during Java applet loading?

While an applet is loading, it displays a white rectangle for a split second. How can we get rid of it?

Upvotes: 3

Views: 392

Answers (2)

Serxipc
Serxipc

Reputation: 6699

If you are targeting Java 6 you can try the new plugin options for displaying a loading screen. http://www.oracle.com/technetwork/java/javase/plugin2-142482.html#LOADING_SCREEN

Upvotes: 1

geocar
geocar

Reputation: 9305

Did you try loading your applet offscreen?

You can then use MAYSCRIPT+LiveConnect to have your applet signal that it is running and have JavaScript move the applet container back onscreen.

Upvotes: 1

Related Questions