MovieClip.pauseAllTweens() , TextField.pauseAllTweens()

Availability

Flash Player 6.

Usage

my_mc.pauseAllTweens()

Returns

Nothing.

Description

method, pauses 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.pauseAllTweens(); // pauses tweens in my_mc1, my_mc2, and my_txt