AppletWatcher wird in Verbindung mit einem ladeintensiven Applet eingesetzt und zeigt den Ladestatus in Form eines Progressbars.
<applet code="AppletWatcher" align="baseline" width="320" height="36" archive="AppletWatcher.jar"> <param name="background" value="000080"> <param name="foreground" value="FFFFFF"> <param name="infoText" value="please wait a moment - loading applet"> <param name="maxDuration" value="60"> </applet>
BACKGROUND RRGGBB hexadecimal (#FF0000 for red) FOREGROUND RRGGBB hexadecimal (#FFFFFF for white) INFOTEXT text displayed while loading MAXDURATION maximum duration for loading the other applet WATCHNAME optional name of the applet you want to watch
T.Stroeter