<class home>  <dreamweaver part II>   <back   next>

Inserting and Playing Media

Quicktime:

src="" (required)
the source of the file


name=""
the name of the embedded file if you want to call it from a script

controller=true/false
visible controller

loop=true/false
can loop or not or give a number of times

autostart=true/false
if it starts playing automatically

height=height of movie

width=width of movie

border=n
size of border around movie if you want it

Hspace=n
number number space around movie

Vspace=n
number for space around movie

pluginspace=link to quicktime, in case you need to update, or download the plugin.

*note1: IMPORTANT
In order for the controller to appear properly, add 16 pixels to the height of a movie.


example>>>

<html>
<head>
<title>Born Free</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body bgcolor="#ffffff" topmargin=4 leftmargin=0 marginwidth=0 marginheight=0>
<table width="75" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td><embed src="born.mov" width="256" height="206" pluginspage="http://www.apple.com/quicktime" autostart="true" loop="false" controller="true">
</embed>
</td>
</tr>
</table>
</body>

</html>