
easingMethod [read-write]
ThumbGrid Version: ThumbGrid 1 and 2
Language Version: ActionScript 3.0
Player Version: Flash Player 9.0.0.0
"Easing" refers to gradual acceleration or deceleration during an animation. This parameter controls how the style of easing (assigned through easing) begins and ends.
Acceptable values are "easeIn", "easeInOut", and "easeOut".
"easeIn" starts the motion slowly and then accelerates motion as it executes.
"easeInOut" combines the motion of the easeIn() and easeOut() methods to start the motion slowly, accelerate motion, then decelerate.
"easeOut" starts the motion fast and then decelerates motion as it executes.
The default value is "easeOut".
public function get easingMethod():String
public function set easingMethod(value:String):void
The following examples changes the easing method to "easeInOut".
my_tg.easingMethod = "easeInOut";