I've developed a simple little applet that displays date information. It runs fine in appletviewer. I then created a simple html page with an <applet> tag and a call to my class. When I launch the html - I get a gray box where my applet should load. (I'm just trying to run the applet locally)
Then I convert the html with an html converter because I heard that it has to be so when using IE 5.5. It changes the html to this:
<html>
<head>
<title>Today Is</title>
<meta name="description" content="">
<meta name="keywords" content="">
</head>
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#FF00FF">
<!--"CONVERTED_APPLET"-->
<!-- CONVERTER VERSION 1.3 -->
<OBJECT classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93"
codebase="
<PARAM NAME="type" VALUE="application/x-java-applet;version=1.3">
<PARAM NAME="scriptable" VALUE="false">
<COMMENT>
<EMBED type="application/x-java-applet;version=1.3" scriptable=false pluginspage="code="c:\justjava\applets\todayis.class" width="600" height="600"
</NOEMBED></EMBED>
</OBJECT>
<!--
<APPLET>
code="todayis.class" width="600" height="600"
</APPLET>
-->
<!--"END_CONVERTED_APPLET"-->
</body>
</html>
When I launch the new html - it tries to load the applet for about 2 minutes until it finally gives up.
Can anyone help a newbie out here?
Thanks Tim Ryan
PROGRESS Developer
Then I convert the html with an html converter because I heard that it has to be so when using IE 5.5. It changes the html to this:
<html>
<head>
<title>Today Is</title>
<meta name="description" content="">
<meta name="keywords" content="">
</head>
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#FF00FF">
<!--"CONVERTED_APPLET"-->
<!-- CONVERTER VERSION 1.3 -->
<OBJECT classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93"
codebase="
<PARAM NAME="type" VALUE="application/x-java-applet;version=1.3">
<PARAM NAME="scriptable" VALUE="false">
<COMMENT>
<EMBED type="application/x-java-applet;version=1.3" scriptable=false pluginspage="code="c:\justjava\applets\todayis.class" width="600" height="600"
</NOEMBED></EMBED>
</OBJECT>
<!--
<APPLET>
code="todayis.class" width="600" height="600"
</APPLET>
-->
<!--"END_CONVERTED_APPLET"-->
</body>
</html>
When I launch the new html - it tries to load the applet for about 2 minutes until it finally gives up.
Can anyone help a newbie out here?
Thanks Tim Ryan
PROGRESS Developer