event.target это SoundChannel. А у меня в одном канале проигрывается несколько Sound. Соответственно в SoundChannel нет ссылки на Sound.

Код AS3:
public function play(_class:Class, loops:uint = 0):void{
var snd:Sound = new (_class)();
channel = snd.play(0,loops);
channel.addEventListener(Event.SOUND_COMPLETE,soundComplete,false,0,true);
}
private function soundComplete(event:Event):void{
trace('soundComplete ' + event.target);
}