Handling <param>s in <applet> blocks
Hey guys!
When we define the HTML for our applet, e.g.,
Code:
<applet code="class.class" archive="mygame.jar" width="100" height="100">
<param name="myname" value="hojimbo">
<param name="mycity" value="San Jose">
</applet>
Is there a way to access the values of "myname" and "mycity" from within my applet?
Thanks!
Re: Handling <param>s in <applet> blocks
Re: Handling <param>s in <applet> blocks
Try to use CommandItem$("parameter"). It works with Vitalize, so maybe it works with java applets too.
Re: Handling <param>s in <applet> blocks
Can you elaborate on how you would "use" that line of code? Not to sound too newbish, but I am fairly competant in MMF2, just not competant in anything web related. ^_^'
Mobichan