<APPLET>
The <APPLET> Tag is used to run an applet, a
"little"
Java program. You have
probably seen applets before, the most popular uses are LED Signs,
text effects, scrolling effects, etc..
The Applet Tag usually runs a pre-compiled program on your
server usually with a .class or .java extension, and is called by a
CODE Reference.
For this example I'm going to use Autobahner Applet by
Steve Bobach :
<applet code="autobahner"
codebase="class"
align="baseline"
width="420"
height="60">
<param name="String"
value="
SL|S2|CL|255|0|255|FT|Quadzilla Fans|
S4|CL|255|0|0|FT|Welcome|FT|to|
S2|FT|The WDVL|S5|RL|-|RL|--|RL|---|
CL|255|0|255|SD|UR|http://wdvl.internet.com/Authoring/Tutorials/|
UN|S1|TB|Tutorials|
CL|255|0|255|SD|UR|http://wdvl.internet.com/Authoring/Design|
CL|255|0|255|UN|S1|FT|Web Design|
CL|0|0|255|SD|UR|http://wdvl.internet.com/Graphics/|
UN|S2|FT|Graphics|
CL|255|0|155|SD|UR|http://wdvl.internet.com/WebRef/Help/Begin.html|
UN|S2|RL|Beginners Guide|
CL|0|255|0|S2|RL|More...|
S4|RL|-|RL|--|RL|---|">
</applet>
As you can see, the parameter names won't make much sense
since each applet has its own features and requirements. You should refer
to the Applet's documentation for information.
|