bunglebrown
New Member
- Messages
- 157
- Reaction score
- 0
- Points
- 0
I'm trying to make a flash file in my page proportional - how can I do it? What in this code could I change to proportion the file? I've tried a variety of combinations without success. Thanks to anyone.
Code:
<script type="text/javascript">
AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','width','800px','height','517px','vspace','0','hspace','0','align','top','title','Movie Title','src','flash_file','quality','high','pluginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','scale','noborder','movie','flash_file' ); //end AC code
</script><
<noscript>
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="[URL]http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0[/URL]" width="800px" height="517px" vspace="0" hspace="0"align="top" title="Movie Title">
<param name="movie" value="flash_file.swf" />
<param name="quality" value="high" /><param name="SCALE" value="noborder" />
<embed src="flash_file.swf" width="800px" height="517px" vspace="0" align="top" quality="high" pluginspage="[URL]http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash[/URL]" type="application/x-shockwave-flash" scale="noborder"></embed>
</object>
</noscript>