I have been at this for hours. All I would like to do is have my .swf file scale with the browser window size. Simple. I’ve changed my code to every form I can find online, but one of two things happen. Either it scales the .swf waaaay down (about 250 pixels high is my guess, down from 600) OR it stretches it to scale ONLY on the width and not the height (which it shrinks to the 250 for some reason).
My flash publish is set to percent with no border. My html is below.
<noscript>
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="100%" height="100%">
<param name="movie" value="Decorworx05.swf" />
<param name="quality" value="high" />
<param name="scale" value="noscale" />
<embed src="Decorworx05.swf" quality="high" scale="noscale" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="100%" height="100%"></embed>
</object>
</noscript>
I have tried changing the param to “default” as well, but that doesn’t do anything. The code posted here will make a small site, proportionate but doesn’t even scale down when the window is small.
Any help would be much appreciated. Thanks!