|
Loading-Text Options
While an applet downloads to the user's system to be shown on the web page, the browser displays a blank area (usually gray or white) where the applet should appear. (We can't change that, of course: the applet can't cover that area with something more attractive until it has downloaded and started running!) Next, the applet has to read its parameters, and load any images, sounds or text files it uses. While this happens, the applet displays the words Loading [applet name]... in green text on a black background. The five parameters described below let you choose whether this should happen, and (if it should) select your own colors and text.
ShowLoad
LoadBgColor
LoadTextColor
LoadText1
<param name=LoadText1 value="Loading menu">If one line should be blank, you can use value="" to prevent any default text being displayed. And if you just want to set the background color of the applet without displaying any text, set both of the parameters to value="". Three Important Notes 2. You may not always see the loading-text displayed. If the applet has nothing to download, or it can load images and other files from your cache, its setup time will be very short and the applet itself can be shown almost immediately. 3. Please make sure the applet is wide enough to display your chosen LoadText1/LoadText2, and tall enough to show both lines (if you include text in both parameters). |