I'm trying to change the y-scale or x-scale of a movieclip. I've tried a few tutorials but they're always talking about "elem._yscale".. However it's no longer supported by AS5.

Can somebody please help me?

Thanks

link|improve this question

33% accept rate
feedback

2 Answers

up vote 0 down vote accepted

You need someDisplayObject.scaleY. Documentation here!

link|improve this answer
feedback

Exactly like fenomas says you need to use the scaleX and scaleY setter methods. If you need a specific width or height in pixels you can also use movieClip.width = 400;, movieClip.height = 400;

You can also combine scaleX and scaleY if you need the same value like movieClip.scaleX = movieClip.scaleY = 1.5;

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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