Доброго дня всем. Может кто то сталкивался с подобной проблемой вкратце опишу ситуацию ...

Код AS3:
...
private var ambSound:Sound = new Sound();
private var chanel:SoundChannel;
...много всего еще
public function playAmbient():void
{
addEventListener(Event.ENTER_FRAME, frameEntered);
chanel.addEventListener(Event.SOUND_COMPLETE, soundComplete);
chanel = ambSound.play();
}
private function frameEntered(e:Event):void
{
trace(chanel.position + " current position ");
trace(ambSound.length + " length ");
}
private function soundComplete(e:Event):void
{
trace(" sound complete ");
}
и видим следующее ->
...
998.4580498866213 current position
1044.8979591836735 length
1021.6780045351474 current position
1044.8979591836735 length
1044.8979591836735 current position
1044.8979591836735 length
1044.8979591836735 current position
1044.8979591836735 length
1044.8979591836735 current position
1044.8979591836735 length
....
а вот -> sound complete так и не увидел я... может кто то с подобным сталкивался? не хочется это костылями исправлять