Thank you so very much, adding the directory containing JOGL helped. Gee, my head starts to smoke...
With your help I could start googling around for how to actually implement an opengl applet into a browser, and this is what I found, in case other newbies want something to read
http://download.java.net/media/jogl/builds/nightly/javadoc_public/com/sun/opengl/util/JOGLAppletLauncher.html
https://jogl-demos.dev.java.net/applettest.html
https://applet-launcher.dev.java.net/
I then quickly made some edits to an exported processing opengl applet which didn't work first.
Original part:
Code:
<object classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93"
codebase="http://java.sun.com/update/1.4.2/jinstall-1_4_2_12-windows-i586.cab"
width="200" height="200"
standby="Loading Processing software..." >
<param name="code" value="com.sun.opengl.util.JOGLAppletLauncher" />
<param name="archive" value="RGBCube.jar,opengl.jar,jogl.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="RGBCube" />
<param name="subapplet.displayname" value="RGBCube" />
<param name="test_string" value="inner" />
</object>
changed part:
Code:
<applet code="org.jdesktop.applet.util.JNLPAppletLauncher"
width=200
height=200
archive="http://download.java.net/media/applet-launcher/applet-launcher.jar,
http://download.java.net/media/jogl/builds/archive/jsr-231-webstart-current/jogl.jar,
http://download.java.net/media/gluegen/webstart/gluegen-rt.jar,
RGBCube.jar,opengl.jar,core.jar">
<param name="codebase_lookup" value="false">
<param name="subapplet.classname" value="RGBCube">
<param name="subapplet.displayname" value="RGBCube">
<param name="noddraw.check" value="true">
<param name="progressbar" value="true">
<param name="jnlpNumExtensions" value="1">
<param name="jnlpExtension1"
value="http://download.java.net/media/jogl/builds/archive/jsr-231-webstart-current/jogl.jnlp">
</applet>
Edit: Deleted the local jogl.jar entry!
I must admit that I don't understand everything yet, but at least I'm on the road
Thanks again dougnukem! btw impressive sites you have there, very very impressive.