OK, I am trying to embed a Quicktime video in a page. I am using the following code, which should work as far as I can tell.
Code:
<object id="qtplayer"
classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B"
codebase="http://www.apple.com/
qtactivex/qtplugin.cab"
width="320" height="26">
<param name="controller" value="TRUE">
<param name="autoplay" value="FALSE">
<param name="src" value="sample.mov">
<embed src="sample.mov" width="320"
height="300" autoplay="FALSE"
controller="TRUE"
pluginspage="http://www.apple.com/
quicktime/download/">
</object>
"sample.mov" plays fine when accessed directly. However it would be preferable for us to display the movie within a page containing the site's normal navigation bar & layout etc. Any ideas why this isn't working? There is simply nothing displaying in the area where the video should be, it's blank. (The rest of the page displays normally.)