Tutorials

The first text

This is the html code for the applet below:
<APPLET code="Dotz.class" archive="dotz.jar" width=400 height=40>
<PARAM name="cabbase" value="dotz.cab">
<PARAM name="item0" value="Hello world">
<PARAM name="animation0" value="<item0>,20">
</APPLET>

This piece of code first creates item0 with the text 'Hello world'. Next it displays it for 20 frames. Note that item0 is referenced with a '<' and a '>' around it. Because the animation is looped, here item0 will be displayed continueously and thus a steady 'Hello world' appears.

III - The first animation