![]() ![]() |
|
Flash Player 6.
my_mc.unpauseAllTweens()
Nothing.
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
}
![]() ![]() |
|