AS3 MotionTween名称

时间:2012-04-16 08:40:42

标签: actionscript-3 tween motion

我正在尝试在AS3中获取动画的名称。

我有许多补间调用MOTION_FINISH上的泛型函数。

mainContent3X = new Tween(MainContent3,“x”,Strong.easeOut,MainContent3.x,1750,1,true);

我需要知道要做的数字/名字。

我试过以下但没有运气:

迹(event.currentTarget.toString()); 迹(event.currentTarget.name);

在Google上找不到任何内容。

任何想法?

1 个答案:

答案 0 :(得分:2)

如果要检索对目标对象的引用,可以执行以下操作:

function motionFinish(e:TweenEvent):void{
    var tween : Tween = e.target  as Tween;
    var target : Object = tween.obj;
    //do nasty stuff with the tween's target
}

请参阅:http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/fl/transitions/Tween.html