We would like to embed a java applet which uses two files.
Here is the "normal" html-code:
Code:
<applet archive="zirkel.jar" code="rene.zirkel.ZirkelApplet.class"
width="180" height="350" align="middle"><param name="file"
value="drehkoerper.zir"><param name="color" value="255,255,255"><param
name="style" value="plain"><param name="movefixname" value="true"><param
name="editdigits" value="6"><param name="displaydigits" value="2"><param
name="angledigits" value="0"></applet>
One file is the binary zirkel.jar, the other drehkoerper.zir.
The only way we managed the problem till now is to set absolut links:
Code:
<APPLET ARCHIVE="http://elearn.ku-eichstaett.de/ilias3/repository.php?ref_id=1676&cmd=sendfile" CODE="rene.zirkel.ZirkelApplet.class" WIDTH="460" HEIGHT="300" ALIGN="CENTER">
<PARAM NAME="file" VALUE="http://elearn.ku-eichstaett.de/ilias3/repository.php?ref_id=1675&cmd=sendfile">
<PARAM NAME="color" VALUE="255,255,255">
<PARAM NAME="style" VALUE="full">
<PARAM NAME="tools" VALUE="move">
<PARAM NAME="options" VALUE="">
<PARAM NAME="editdigits" VALUE="6">
<PARAM NAME="displaydigits" VALUE="2">
<PARAM NAME="angledigits" VALUE="0">
</APPLET>
This is fine as long as we don't export the learning module or put it to another place.
Has anybody an idea who to manage it more platform independently?
Thanks in advance.
Peter