Percentage Problem with swf file?

Thao

New member
If I use the width and height pixel (i.e. width = 300 px, height =200px), the image shows up on the page. However, when I subtitute the image width and height with 100% as the code below, the image doesn't show up. Please tell me how to fix the percentage to make the image displays. (I need to display a lot of images, so I want to use the % instead of the actual image pixel). Thank you very much.

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0"
id="graphic" width="100%" height="100%" />
<param name="movie" value="myImage.swf" />
<param name="allowScriptAccess" value="sameDomain" />
<param name="quality" value="autohigh" />
<param name="wmode" value="transparent" />
</object>
 
Back
Top