MovieClip.unpauseAllTweens() , TextField.unpauseAllTweens()

Availability

Flash Player 6.

Usage

my_mc.unpauseAllTweens()

Returns

Nothing.

Description

method, unpauses 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_mc1.onRollOver = function() {
	this.pauseAllTweens(); // pauses tweens in my_mc1, my_mc2, and my_txt
}

my_mc1.onRollOut = function() {
	this.unpauseAllTweens(); // unpauses tweens in my_mc1, my_mc2, and my_txt
}