не совсем правильно понимаете как работает Sound, SoundChannel.
рекомендую почитать документацию
http://help.adobe.com/ru_RU/FlashPla...nd.html#play()

Код AS3:
//var sound:Sound; звук, который надо воспроизводить
btn.addEventListener( MouseEvent.CLICK, toggleSound );
var soundChannel:SoundChannel = null;
function toggleSound( e:MouseEvent = null ):void {
if( soundChannel ) {
soundChannel.stop();
soundChannel = null;
} else {
soundChannel = sound.play( 0, 3000 );
}
}