I'have trouble to export opengl sketches to web applets. There's a Java Security Warning per jar. I tried to sign applets (http://www.processing.org/hacks/hacks:signapplet) and it doesn't seems to have any effect in my browser. (I'm using Opera+Ubuntu+java-1.5.0-sun-1.5.0.15/jre).
gluegen-rt have been added, and I use an external library; 5 different jars, then you need to accept 5 times Java Security prompts.
I tried to recombine jars (core.jar+opengl.jar+extraLib.jar) in one jar, but it doesn't seems to work (I didn't tried with gluegen-rt and jogl because of the native links).
Is it possible to reduce the number of prompts? When you accept permenently, why Java is still prompting for Java Security? Does it depends on Java version or the browser?
Code:<param name="archive" value="p5/@@theClass@@.jar,opengl.jar,jogl.jar,gluegen-rt.jar,extraLib.jar,core.jar" />
Here's to extended part of how the object is called:
Code:<object classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93"
codebase="http://java.sun.com/update/1.5.0/jinstall-1_5_0_15-windows-i586.cab"
width="800" height="400"
standby="Loading Processing software..." >
<param name="code" value="com.sun.opengl.util.JOGLAppletLauncher" />
<param name="archive" value="p5/@@theClass@@.jar,opengl.jar,jogl.jar,gluegen-rt.jar,extraLib.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="p5.@@theClass@@" />
<param name="subapplet.displayname" value="@@theClass@@" />
<param name="test_string" value="inner" />
...