☆手順
this.onLoad = function() { num01_mc.stop(); num02_mc.stop(); num03_mc.stop(); } start_btn.onPress = function() { num01_mc.play(); num02_mc.play(); num03_mc.play(); } stop01_btn.onPress = function() { num01_mc.stop(); } stop02_btn.onPress = function() { num02_mc.stop(); } stop03_btn.onPress = function() { num03_mc.stop(); } reset_btn.onRelease = function() { num01_mc.gotoAndStop(1); num02_mc.gotoAndStop(1); num03_mc.gotoAndStop(1); }