Чем помочь? Читайте про класс Sound....

Код AS1/AS2:
var SFXStart:Sound = new Sound( PATH );
SFXStart.attachSound("SFXStartLIB"); // Вставили звук
function PlaySound( SND ){ // Проиграли звук
if ( !mutted ) {
if ( eval(SND).position == 0 || eval(SND).position == eval(SND).duration ){
eval(SND).start(0,1)
}
}
}
function StopSound( SND ){
eval(SND).stop(0,1)
}
PlaySound( "SFXStart" ) // Сказали ему "встань и иди"