Actionscript 3 as3相对于当前位置的中间位置

Actionscript 3 as3相对于当前位置的中间位置,actionscript-3,actionscript,tween,Actionscript 3,Actionscript,Tween,我在计时器上设置了一个tween: var manTimer:Timer = new Timer(1000,14); manTimer.addEventListener(TimerEvent.TIMER, moveMan); function moveMan(e:TimerEvent):void { var manX:Tween = new Tween(man, "x", Regular.easeOut, 0, -40, 1, true); } 我只需要让吐温的位置相对于它的当前位置,

我在计时器上设置了一个tween:

var manTimer:Timer = new Timer(1000,14);
manTimer.addEventListener(TimerEvent.TIMER, moveMan);
function moveMan(e:TimerEvent):void {
    var manX:Tween = new Tween(man, "x", Regular.easeOut, 0, -40, 1, true);
}
我只需要让吐温的位置相对于它的当前位置,而不是从舞台的0位置开始,然后移动舞台的-40位置。它需要从当前位置开始,从该位置移动-40

谢谢, 韦德

var manX:Tween=新Tween(man,“x”,Regular.easeOut,man.x,man.x-40,1,true)