QuickTime Movies for the Web


AutoStart with a Controller and
Click to Play with the Controller

You may embed a movie that will automatically start once loaded.
The movie plays in a space in the browser and the viewer can use the QuickTime controls.
Notice the change from 240 to 255 - that's to allow additional space for the quicktime controls in the viewer.

You can copy and paste the code below and adjust for your movie

<OBJECT CLASSID="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" WIDTH="320" HEIGHT="255" CODEBASE="http://www.apple.com/qtactivex/qtplugin.cab">
<PARAM name="SRC" VALUE="mymovie.mov" >
<PARAM name="AUTOPLAY" VALUE="true">
<PARAM name="CONTROLLER" VALUE="true">
<EMBED SRC="mymovie.mov" WIDTH="320" HEIGHT="255" AUTOPLAY="true" CONTROLLER="true" PLUGINSPAGE="http://www.apple.com/quicktime/download/">
</EMBED>
</OBJECT>

The movie will play and look like this:


Change autoplay from true to false, and you'll see that you have to click the play button to start the movie.