0

我正在尝试使影片剪辑从 X24.5 移动到 X275,从 Y400 移动到 Y100,但在 11700 帧或 6.5 分钟的过程中。我已经尝试了几个小时,但无济于事。我敢打赌,答案很简单,但我一直无法弄清楚。任何帮助将非常感激。

4

1 回答 1

1

您可以使用 Flash 内置的补间方法对其进行补间,或者您可以尝试我对Greensock 的 TweenLite 的偏好。

代码的区别如下:

Flash 默认补间

import fl.transitions.Tween;
import fl.transitions.TweenEvent;
import fl.transitions.easing.*;

myTween = new Tween(myObj, "x", Regular.easeIn, startingX, endingX, animationTiming, true);
myTween.addEventListener(TweenEvent.MOTION_FINISH, functionToCall);

TweenLite:

import com.greensock.TweenLite;
import com.greensock.easing.*;

TweenLite.to(myObj, aniTiming, {x:endingX, ease:Regular.easeIn, onComplete:functionToCall});
于 2012-10-10T18:09:18.947 回答