Re: ImageJ Applet problem running my code and opening images

Posted by thehobbit on
URL: http://imagej.273.s1.nabble.com/ImageJ-Applet-problem-running-my-code-and-opening-images-tp5000786p5000787.html

Sorry, I forgot to post the html code I use to run the applet, if it can help:

<html>
<head>
<title>ImageJA Applet</title>
</head>
<body bgcolor=gray>

<h1>ImageJ embedded in a website</h1>

<applet codebase="."
	code="ij.ImageJApplet.class" archive="ij.jar"
	width=750 height=550
	security=all-permissions>
<param name=url1 value=images/danbo1.jpg>
<param name=url2 value=images/danbo2.jpg>
</applet>

</body>
</html>


or also this:

<!DOCTYPE html>
<html>
<body>
<APPLET code=ij.ImageJApplet.class width=750 height=550 archive="ij.jar">
<PARAM NAME="code" VALUE="ij.ImageJApplet.class">
<PARAM NAME="width" VALUE="750">
<PARAM NAME="height" VALUE="550">
<PARAM NAME="archive" VALUE="ij.jar">
</APPLET>
</body>
</html>