Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.
I want to embed this movie into my web page, I want to to play automatically, no loop and with the controller hidden. What code do I use to go about doing this?

Oh yeah, it has to be HTML, not java script
Just ONE way...


<html>

<head>
<meta http-equiv="content-type" content="text/html;charset=iso-8859-1">
<meta name="generator" content="whatever">
<title>Untitled Page</title>
</head>

<body bgcolor="#ffffff">
<div align="center">
<p><object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab" height="480" width="720">
<param name="src" value="file:///Users/you/Desktop/Untitled.mov">
<param name="autoplay" value="true">
<param name="controller" value="false">

<embed height="480" pluginspage="http://www.apple.com/quicktime/download/" src="file:///Users/you/Desktop/Untitled.mov" type="video/quicktime" width="720" controller="false" autoplay="true">
</object></p>
</div>
</body>

</html>
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.