I am embedding some quicktime movies on an internal website. If I set width/height equal to a percent (width="100%" for instance), IE8 will not display the movie. Firefox does.
If I set width/height equal to some value (like the 640x480 below) then both display it. IE scales the movie to 640x480. FF will scales the movie to the original value since it happens to be smaller than 640x480.
I would like to get scaling with % working with both IE8 and Firefox. Does anyone have experience doing this?
`<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B"
codebase="http://www.apple.com/qtactivex/qtplugin.cab"
width="640"
height="480">
<param name="src" value="./files/testfolder/sample_movie/070111083318.mov">
<param name="autoplay" value="true">
<param name="type" value="video/quicktime">
<param name="scale" value="ToFit">
<embed src="./files/testfolder/sample_movie/070111083318.mov"
autoplay="true"
type="video/quicktime"
pluginspage="http://www.apple.com/quicktime/download/"
width="640"
height="480">
</object>`