Actionscript 2循环X帧的数量是一个随机的次数

时间:2016-05-17 15:17:08

标签: flash actionscript-2

在ActionScript 2中,我希望在影片剪辑元件中随机循环一定数量的帧。

我的代码现在看起来像这样:

var a = Math.floor(Math.random() * (5)) + 1;
this.onEnterFrame = function() 
{
    while (a != 0)
    {
        if (this._currentframe == 29)
        {
            this.gotoAndPlay(1);
        }
        a -= 1
    }
}

但这只会成功崩溃Flash。任何帮助,将不胜感激。

0 个答案:

没有答案