а что мешает сделать так

Код AS1/AS2:
var switch:Sound = new Sound();
switch.attachSound("zing.mp3");
info_btn.onRollOver = function() {
switch.start()
mouse_over_info = true;
};
info_btn.onRollOut = function() {
switch.stop()
mouse_over_info = false;
};