vote up 0 vote down star

I want to load a swf into a Flex application and scale it down into a thumbnail-size.

I've looked at http://stackoverflow.com/questions/245420/dimensions-of-loaded-swfs-stage, but it does not really address my need: I want to size it and keep all the pieces inside a container.

Thanks

flag

74% accept rate

1 Answer

vote up 0 vote down check

You just need to scale the container that the SWF is in. For example, in vanilla AS3 you'd load into a Loader object. You'd just have to set the scaleX and scaleY properties of that object to scale it down.

link|flag
How do I figure out how large the SWF is, accounting for it dynamically moving elements ? – Richard Haven Sep 3 at 1:20
You don't really... all you can do is scale it and mask it (if it's rectangular mask, check out using scrollRect - it's much faster than an actual mask) – Branden Hall Sep 3 at 19:13

Your Answer

Get an OpenID
or

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