Am trying to include images (jpegs and/or flash) that resize dynamically with the page.
I am including them as HTML in a fragment for example;
!!<<table width="100%" height="100%"><tr><td>
<object classid="clsid: D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="100%" height="100%">
<param name="movie" value="shopfront.swf">
<param name="quality" value="high">
<param name="wmode" value="transparent">
<embed src="shopfront.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="100%" height="100%"></embed></object>
</td></tr></table>>!!
This <object> works fine when I test it in a page of its own but stops as soon as it is included in my Actinic page. Flash or JPEG objects will not resize to full height and consequently have a border (in this case) to the left and right.
I have tride ExactFit but that simply stretches them horizontally and does not retain the aspect ratio.
Any ideas?
I am including them as HTML in a fragment for example;
!!<<table width="100%" height="100%"><tr><td>
<object classid="clsid: D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="100%" height="100%">
<param name="movie" value="shopfront.swf">
<param name="quality" value="high">
<param name="wmode" value="transparent">
<embed src="shopfront.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="100%" height="100%"></embed></object>
</td></tr></table>>!!
This <object> works fine when I test it in a page of its own but stops as soon as it is included in my Actinic page. Flash or JPEG objects will not resize to full height and consequently have a border (in this case) to the left and right.
I have tride ExactFit but that simply stretches them horizontally and does not retain the aspect ratio.
Any ideas?
Comment