1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13:
function playSound(which:String) { var mySound:Sound = new Sound(); stopAllSounds(); mySound.attachSound(which); mySound.start(); } btn1.onRelease =function() { playSound("a"); } btn2.onRelease = function() { playSound("b"); }