How do I make a java applet run in exe?

How do I make a java applet run in exe?

by John Isner -
Number of replies: 2
Exelearning's help for exe's java applet iDevice is not clear on what goes in the text box labeled "Applet Code." I assume this is the entire applet tag.

I uploaded GraphPAD_1.jar and then pasted the following into Applet Code:

<applet
Name = "GraphPAD_1"
Archive = "GraphPAD_1.jar"
Width = "260"
Height = "190"
HSpace = "0"
VSpace = "0"
Align = "Top"
Code = "diagrammer.PAD.GraphPAD.class"
>
<PARAM Name = "NumPoints" Value = "0">
<PARAM Name = "Order" Value = "0">
... other parameters omitted
</applet>

However when I finish editing, exe displays the image below. It obviously understands applet tag because the window is sized properly. What do I need to make the applet run?
---
Exe 0.19.1 (with java applet iDevice plugin)
Windows XP
Java 2 Platform Standard Edition Version 1.5.0




Attachment exe_java_applet_screenshot.png
Average of ratings: -
In reply to John Isner

Re: How do I make a java applet run in exe?

by Marcus Green -
Picture of Core developers Picture of Particularly helpful Moodlers Picture of Plugin developers Picture of Testers
You need to take a look at the Java console (should be somewhere in the tray if you are on Windows). It will probably be giving some error message about not being able to find a class.
In reply to Marcus Green

Re: How do I make a java applet run in exe?

by John Isner -
Thanks. You were right, it could not find the class. It's working now.