Hmm, it's possible an alternate Flash player may give you more options, but otherwise flash files typically specify a minimum size that the official flash player at least will always try to respect.
You might try creating a basic web-page to see if you can force the Flash's size through that, open up notepad and paste the following into it:
- Code: Select All Code
<html>
<body>
<object width="550" height="400">
<param name="movie" value="somefilename.swf">
<embed src="somefilename.swf" width="550" height="400">
</embed>
</object>
</body>
</html>
Replace "somefilename.swf" with the URL to the flash file you're trying to display, and change the width and height settings accordingly. Then save the file somewhere you can find it, and make sure the extension is .html, it should then be possible to open it in a web-browser at the size you've specified. This would be the hacky way to go about it though, finding a flash player that lets you do what you need maybe be better in the long-run.
As a side-note, we're hoping to support pretty much any screen-size, as the fixed widths have always annoyed the hell out of me.