View Full Version : Embeded QuickTime Moive?
Benjamindaines
Jan 27, 2007, 11:33 AM
I want to embed this (http://homepage.mac.com/daines88/.Public/Ben/Untitled.mov) 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
Les Kern
Jan 27, 2007, 12:25 PM
I want to embed this (http://homepage.mac.com/daines88/.Public/Ben/Untitled.mov) 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>
vBulletin® v3.8.6, Copyright ©2000-2012, Jelsoft Enterprises Ltd.