vote up 1 vote down star
2

I'm loading an SWF movie into an HTML page using SWFObject. I want to resize this SWF dynamically. How can SWFObject help? I'm sure I don't have to write my own solution.

flag

I think you need to clarify what you mean by "resize" the flash swf. The way it will act "internally" when it's embedded size changes depends on how you've made the swf in the first place. – grapefrukt Jun 5 at 7:25
I need to resize the SWF container... BTW I know about scaling (Stage.scaleMode) and align (Stage.align) options set within the flash SWF that affect how the contents get affected as the container resizes. – Jeremy Rudd Jun 5 at 11:12

3 Answers

vote up 1 vote down check

The easiest solution is to embed the SWF within a container div, then use JavaScript and CSS to dynamically resize the container DIV. If the SWF is set to 100% width/height, it will stretch to fit the wrapper whenever the wrapper is resized.

In the body:

<div id="wrapper">
<div id="flash">This div will be replaced by an object via SWFObject</div>
</div>

In the head:

<script>
var flashvars = {};
var params = { scale: "exactFit" };
var attributes = {};

swfobject.embedSWF("myContent.swf", "flash", "100%", "100%", "9.0.0","expressInstall.swf", flashvars, params, attributes);
</script>

<style type="text/css">
#flash {
   display: block;
   width: 100%;
   height: 100%;
}
</style>

Now whenever you resize #wrapper, the SWF will scale to fill it.

link|flag
vote up 2 vote down

Check out swffit, it should fit the bill perfectly.

link|flag
It does not resize the flash SWF, it only does something to the Div that holds it. I want to actually scale the flash SWF up and down much like resizing the Solitaire window. – Jeremy Rudd Jun 5 at 4:50
vote up 0 vote down

I believe the code above should read:

#wrapper {
   display: block;
   width: 100%;
   height: 100%;
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.