MovieClip.ffTween() , TextField.ffTween()

Availability

Flash Player 6.

Usage

my_mc.ffTween(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, jumps  props to the end of a (currently-playing) tween in any MovieClip or TextField and deletes the tween. If props is not passed, fast-forwards all tweens in movieclip or textfield.

example:

my_mc.tween(["_x","_width"],[200,0],10);

my_mc.onPress = function() {
  this.ffTween(); // fast-forwards and stops all movements 
  //this.ffTween("_x"); // jumps my_mc to end _x position & stops tweening _x
}