function wait() { stop();var myInterval = setInterval(function () { play();clearInterval(myInterval);}, 2*1000); } wait(); play_btn.onRelease = function(){ _root.play(); }
stop_btn.onRelease = function(){ _root.stop(); }