我正在处理 Flash 横幅,我希望动画循环 3 次然后停止。我不知道动作脚本,但我找到了这段代码:
在第一帧我使用了这个:
_root.loops_played = 0;
if (_root.loops_played >= 3){
stop(); //*
} else {
play();
}
在最后一帧:
_root.loops_played += 1;
不幸的是,动画一直在循环,我收到了这个错误:
Scene 1, Layer 'actions', Frame 1, Line 1 1120: Access of undefined property _root.
Scene 1, Layer 'actions', Frame 1, Line 3 1120: Access of undefined property _root.
Scene 1, Layer 'actions', Frame 175, Line 1 1120: Access of undefined property _root.
Scene 1, Layer 'actions', Frame 175, Line 1 1120: Access of undefined property _root.
有人可以帮忙吗?