MovieClip.lockTween()

Availability

Flash Player 6.

Usage

my_mc.lockTween()

Parameters

none

Returns

nothing

Description

method, disallows performing tweens with movieclip (useful with buttons)
to unlock use .unlockTween() method

following calling of tween method do not perform nothing, because my_mc is locked :

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