<applet .... > can be followed by |
<param name=attributename1 value="attributevalue1" > ....... |
<param name=attributenameN value="attributevalueN" > |
</applet> |
The Java program accesses this information by |
String attribute; |
attribute = getParamter("attributename1"); |
if( attribute == null )
|
Typically this processing would be in init() method of Applet |