Reputation: 374
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
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
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