I am writing an applet, and it's files (class and
jar files that it uses) are all packed into 1 jar
file named simply theApplet.jar in the
mainifest it has<br><br>Main-class: runner and
overall the main jar file that I have created contains
the manifest, 3 class files and a jar file which 1 of
the 3 classes uses.<br><br>my current html was
<br><br><applet code="runner"
archive="theApplet.jar"></applet><br><br>yet this appears to not
initiate since it cannot find
the jar file within the jar file.<br><br>How do I
"fix" this situation?<br><br>-Cnik