MovieClip.unlockTween()

Availability

Flash Player 6.

Usage

my_mc.unlockTween()

Parameters

none

Returns

Nothing

Description

method, allows performing tweens with movieclip (for movieclips that was locked with lock)
Opossite of .lockTween() method

in following example is performed only the second tween command:

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