MovieClip.unlockTween() , TextField.unlockTween()

Availability

Flash Player 6.

Usage

my_mc.unlockTween()

Parameters

none

Returns

Nothing

Description

method, re-enables performing tweens on a target that was locked using lockTween()

in following example only the second tween is performed:

my_mc.lockTween();
my_mc.tween(["_x","_y"],[0,0]);
my_mc.unlockTween();
my_mc.tween("_width",300);