A quick question. I need to embed a 600x388 .swf into a div that is only 584 wide. To do this correctly, should the original flash file stage be resized to fit or can I scale the width/height attributes as shown in the code below without any adverse affects? I have tested a change in the code only and the file displays/functions correctly when put on the server, but I want to make sure this quick fix doesn’t pose any possible pitfalls. Thanks!
<script type=“text/javascript”>
AC_FL_RunContent( ‘codebase’,’[COLOR=#0000ff]http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0’,‘width’,‘584’,‘height’,‘380’,‘src’,‘map-file’,‘quality’,‘high’,‘pluginspage’,‘http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash’,‘movie’,‘map-file’[/COLOR] ); //end AC code
</script><noscript><object classid=“clsid:D27CDB6E-AE6D-11cf-96B8-444553540000” codebase="[COLOR=#0000ff]http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0"[/COLOR] width=“584” height=“380”>
<param name=“movie” value=“map-file.swf” />
<param name=“quality” value=“high” />
<embed src=“map-file.swf” quality=“high” pluginspage="[COLOR=#0000ff]http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash"[/COLOR] type=“application/x-shockwave-flash” width=“584” height=“380”></embed>
</object></noscript>