MovieClip.unpauseTween() , TextField.unpauseTween()

Availability

Flash Player 6.

Usage

my_mc.unpauseTween(props)

Parameters

props One or more properties to be specifically affected. If the param is not passed, all properties being tweened are affected.

Accepts the following formats:

To affect colorTransform (methods colorTo, brightnessTo, colorTransformTo, invertColorTo, tintTo) use "_ct_" as props parameter.

Returns

Nothing.

Description

method, unpauses props of a (currently-paused) tween within an individual MovieClip or TextField. If props is not passed, unpauses all paused tweens the movieclip or textfield.

Note that if you passed a start delay in the tween and called pauseTween() while the delay is still running, the delay may be unpaused and will continue in progress. However, individual properties are not supported during delays and the props argument will be ignored in this case.

example:

my_mc.tween(["_x","_width"],[200,0],10);
my_mc.pauseTween(); // pauses _x and _width tweens in my_mc

my_mc.onPress = function() {
  this.unpauseTween();  // unpauses all movements 
  //this.pauseTween("_x"); // unpauses just _x tween
}