Hello,
It seems that both, MyEclipse “HTML Designer” and “Classic HTML Editor” (in preview mode), don’t accept the HTML tag <applet/>.
I would like to change this one with the <object/> tag, wich doesn’t cause MyEclipse browser crash.
Is it possible to change the template wich is written in the StartPageForxxxx.hmtl from the Applet Wizard when a Applet class is created.
I would like to change the code:
<applet codebase="."
code="applet.class"
name="applet"
width="320"
height="240">
<!--<param name="p0" value="">
<param name="p1" value="">-->
</applet>
with the following:
<object codetype="application/java"
classid="java:applet.class"
width="300"
height="100"
codebase="WEB-INF/classes">
<!--<param name="p0" value="">
<param name="p1" value="">-->
</object>
Thanks
Michel