|
.yScaleTo() Applies To MovieClip, TextField Availability Flash 6 and above, using AS1 or AS2. Usage <MovieClip|TextField>.yScaleTo(scale [, seconds, animation type, delay, callback, extra1, extra2]); Parameters scale : Desired scale value for the object's _yscale attribute, in percent (100 being the standard size). Returns Nothing. Description Shortcut method; does a transition on the _yscale property of a MovieClip or TextField at the same time, resizing it based on its original control point. Examples // Scales a MovieClip vertically to 250%, in one seconds, using a linear transition <MovieClip>.yScaleTo(250, 1, "linear"); See Also |