/ Published in: ActionScript
スクリプトで指定秒止めて次へ
Expand |
Embed | Plain Text
//フレームアクション stop(); //停止 //Intervalを設定 var stopID = setInterval(stopAndClearInterval, 3000); //再生してIntervalを止める関数 function stopAndClearInterval(){ _root.top.gotoAndStop(2); clearInterval(stopID); }
You need to login to post a comment.
