Java Applets/Activex:
Dreamweaver lets you insert advance web plug-ins for Java and Active X control.
Insert/Media/Applet
Java:
Java Applets
are run in a web browser. Java is a C++ related programming language. Java is
usually used for stand alone projects. Click the icon on the objects panel to
insert.
Insert/Media/ActiveX
ActiveX:
ActiveX is a Microsoft
only controller for playing media on the web. It acts kind of like a plug-in,
or Java, or Javascript. It can play stand alone projects in a browser like an
applet. Click the icon on the objects panel to insert.
Applet
code="" (required)
the source code for the file
name=""
the name of the embedded file if you want to call it from a script
height=height of movie
width=width of movie
alt=""
text you want a user to see if they can't see your Applet
Hspace=n
number number space around movie
Vspace=n
number for space around movie
<html><head><title>Using
applets</title></head>
<body>
<APPLET CODE="Clock2.class" WIDTH=170 HEIGHT=150
alt="clock">
</APPLET>
</body></html>