MovieClip.stopAllTweens() , TextField.stopAllTweens()

Availability

Flash Player 6.

Usage

my_mc.stopAllTweens()

Returns

Nothing.

Description

method, stops all runing and delayed tweens globally from any MovieClip or TextField

example:

my_mc1.tween(["_x","_width"],[200,0],10);
my_mc2.tween(["_y","_height"],[600,10],5);
my_txt.scaleTo(40,1);

my_txt.stopAllTweens(); // stops tweens in my_mc1, my_mc2, and my_txt