Actionscript 3을 사용하여 점차적으로 동영상 클립의 속도를 줄이려고합니다. 현재 코드가 동영상 클립을 재생 한 다음 갑자기 멈추고 몇 프레임 앞으로 틱합니다. 내가 원하는 것보다 훨씬 거친 표정.MovieClip의 재생 속도를 늦추십시오.
var t:Timer=new Timer(2000,1);
t.addEventListener(TimerEvent.TIMER,slowDown);
t.start();
function slowDown(e:TimerEvent):void {
if (currentFrame==totalFrames) {
gotoAndStop(1);
} else {
gotoAndStop(currentFrame+1);
}
}
타이머 클래스는 적어도 올바른 방향을 유지합니까? 감사.
성공한 답변입니다. 도와 주셔서 감사합니다. – cbeezy
+1이기는 답변. –