I am trying to embed a java applet into an html
presentation. I am following the directions here. It is the same exact app I want to embed, just with a different file to be loaded locally. I noticed that when I try to open the same page locally, i.e. when I download the demo page and run it locally, the applets don't show up. I have the following code:
<object classid="java:king/Kinglet.class"
type="application/x-java-applet"
archive="king.jar"
width="500" height="500">
<param name="mode" value="flat">
<param name="kinSource" value="kin/1xd3Knot.kin">
</object>
where the only difference from the demo is that I changed the value of the kinSource
parameter. It doesn't work with the original file either.
Is there a way for me to get this to work locally?