I am working on my html homework and I have to include a java applet-Please help?

Mona

New member
1) I need to insert a text string that states "To play this clip, you need Adobe Flash Player"

2) I also need to insert the file class as a plug-in

3) If the browser does not support Java, have it display the text "Your browser does not support Java applets" in place of the .class applet.

This is what I have so far:

<!if--[if IE]><!-->
<object classid="clsd:clsid:8AD9C840-044E-11D1-B3E9-00805F499D93"
type="application/x-java-applet"
width="280" height="240">
<param name="code" value="Mandel.class" />
<!--<![endif]-->

<!--[if !IE]><!-->
<object classid="java:Mandel.class"
type="application/x-java-applet"
width="280" height="240">
<!--<![endif]-->

<applet code="Mandel.class" width="280" height="240">
</applet>

</object>
 
Back
Top