on (press) { stop(); }
on (press) { play(); }
function stop_All(mc) { mc.stop(); for (var i in mc) { if(typeof mc[i]=="movieclip") { if(mc[i]!=mc) { stop_All(mc[i]); } } } }
on (release) { stop_All(_root) }