unfortunately messing around with the html file doesn't work when i have more than one file included in the archive section of the html file. i think it has something to do with opengl
this is (part of) the original html file processing creates:
Code:<div id="starus_container">
<!--[if !IE]> -->
<object classid="java:com.sun.opengl.util.JOGLAppletLauncher.class"
type="application/x-java-applet"
archive="starus.jar,opengl.jar,jogl.jar,gluegen-rt.jar,core.jar"
width="960" height="720"
standby="Loading Processing software..." >
<param name="archive" value="starus.jar,opengl.jar,jogl.jar,gluegen-rt.jar,core.jar" />
<param name="mayscript" value="true" />
<param name="scriptable" value="true" />
<param name="image" value="loading.gif" />
<param name="boxmessage" value="Loading Processing software..." />
<param name="boxbgcolor" value="#FFFFFF" />
<param name="progressbar" value="true" />
<param name="subapplet.classname" value="starus" />
<param name="subapplet.displayname" value="starus" />
<param name="test_string" value="outer" />
<!--<![endif]-->
and here is my edited version (i tried to do it like shown in "applet-opengl.html"). since the html file is in the folder starus i manually added "starus/" to all sketch and archive paths
Code:<div id="starus_container">
<!--[if !IE]> -->
<object classid="java:com.sun.opengl.util.JOGLAppletLauncher.class"
type="application/x-java-applet"
// MANUAL EDIT
archive="starus/starus.jar,starus/opengl.jar,starus/jogl.jar,starus/gluegen-rt.jar,starus/core.jar"
width="960" height="720"
standby="Loading Processing software..." >
// MANUAL EDIT
<param name="archive" value="starus/starus.jar,starus/opengl.jar,starus/jogl.jar,starus/gluegen-rt.jar,starus/core.jar" />
<param name="mayscript" value="true" />
<param name="scriptable" value="true" />
<param name="image" value="loading.gif" />
<param name="boxmessage" value="Loading Processing software..." />
<param name="boxbgcolor" value="#FFFFFF" />
<param name="progressbar" value="true" />
// MANUAL EDIT
<param name="subapplet.classname" value="starus/starus" />
// MANUAL EDIT
<param name="subapplet.displayname" value="starus/starus" />
<param name="test_string" value="outer" />
<!--<![endif]-->
doing so, i get an "error: Start failed: class not found: starus/starus"
i tried quite a few other combinations of adding the folder and not adding it and i either got an error right on the start of loading the applet or i got "Error: unable to install the native file locally"
does anyone see what i am doing wrong? i think i'm stuck once again...