I’ve got a flash website that uses html to always fill the screen regardless of screen resolution.
I want it to fill the screen up to the point the size would exceed the actual size of the flash movie. So the movie would fit the browser is the browser is smaller than the movie, but if the browser is larger than the movie dimensions, the movie would play at actual size and not fill the browser.
I didn’t now if an if/then statement or equivalent could be added to the html to do this.
Here is the targeted lines of my current HTML file:
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="[http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0](http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0)" width="100%" height="100%" id="index" align="middle">
<param name="allowScriptAccess" value="sameDomain" />
<param name="movie" value="index.swf" />
<param name="quality" value="high" />
<param name="bgcolor" value="#f6eeeb" />
<embed src="index.swf" quality="high" bgcolor="#f6eeeb" width="100%" height="100%" name="index" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="[http://www.macromedia.com/go/getflashplayer](http://www.macromedia.com/go/getflashplayer)" />
</object>
Thanks in advance.