var s1:Sound = new Sound(); var s2:Sound = new Sound(); s1.attachSound("s1"); s2.attachSound("s2"); s1.start(); s2.start(); b.onPress = function(){ //отрубится 1 звук s1.stop("s1"); } b2.onPress = function(){ //отрубятся все s1.stop(); }