HTML Code to include a .jar?
Hello,
My friend and I made a game that is all packaged in an executable jar file. How can I upload this to our website to allow people to play it in browser?
Some special tags or something? My thanks and 10 points to whomever can help me!
Comments
Old way:
<applet archive="yourfile.jar" code="yourApplet.class" width="400" height="200">
</applet>
Recommended way:
<object classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93" width="200" height="200">
<param name="code" value="Applet1.class">
</object>
Ron
A 30 second web search would answer this for you.
Here's one of the top results:
http://www.devtech.com/SiteSurfer/doc/help/appembe...