在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。任何帮助,将不胜感激。