使用 ActionScript3 Flash 播放一系列给定的帧

Playing a sequence of given frames using ActionScript3 Flash

我是 Flash 和 ActionScript 3 的新手 我有一个角色的 8 个口型代码,我在不同的帧中创建了它,所以我想逐帧播放我的动画,但顺序不同,以形成我的角色会说的短语 我确实自己尝试过,但我没有成功:

    stop();

var tableau = new Array(); 
tableau[0]=2;
tableau[1]=4;
tableau[2]=1;
tableau[3]=7;
tableau[4]=8;
tableau[5]=1;
tableau[6]=7;

for(var i =0;i<tableau.length;i++){
    trace(tableau[i]==this.currentFrame);
    if(tableau[i]==this.currentFrame){
        gotoAndPlay(tableau[i]);
        trace(this.currentFrame);
    }
}

这很简单。你需要的是订阅每帧触发一次的特殊事件,并根据计划每帧移动一次播放头。

stop();

var Frames:Array;

// This will prevent things from overlapping
// if one of the frames on the list is the
// current one and playhead will hit here
// once again (and try to execute code).
if (Frames == null)
{
    Frames = [2,4,1,7,8,1,7];
    addEventListener(Event.ENTER_FRAME, onFrame);
}

function onFrame(e:Event):void
{
    // Get the next frame index and remove it from the list.
    var aFrame:int = Frames.shift();

    // If there are no more frames to show,
    // unsubscribe from the event.
    if (Frames.length < 1)
    {
        removeEventListener(Event.ENTER_FRAME, onFrame);
    }

    gotoAndStop(aFrame);
}