私は 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.
誰か助けてくれませんか?