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>`
link|improve this question
What DOCTYPE are you using? If it's HTML5, all parent elements must have a percent width and percent height defined for it to display properly. – jqueryrocks Jan 12 '11 at 15:48
I wasn't using one. I added this and now it will display but it is stretching to the full screen with width=100%. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "w3.org/TR/html4/strict.dtd">; – user572918 Jan 12 '11 at 16:11
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.