[RESOLVED (sort of)]Object and QuickTime Movies
I've posted about this before, but I got a little bit further with my query. When I try to embed QuickTime movies using OBJECT I found that it didn't work in Moz or Opera, so I did a bit of investigating and found a way to make it work in those two, but then it stopped in IE! So I was wondering if anyone had any idea how to make it work in all?
Mozilla/Opera:
Code:
<object type="video/quicktime" data="PanoramaHigh.MOV"
width="400" height="315">
<param name="AUTOPLAY" value="true" />
<param name="CONTROLLER" value="true" />
</object>
IE:
Code:
<object codetype="video/quicktime" classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B"
codebase="http://www.apple.com/qtactivex/qtplugin.cab"
width="400" height="315">
<param name="SRC" value="PanoramaHigh.MOV" />
<param name="AUTOPLAY" value="true" />
<param name="CONTROLLER" value="true" />
</object>