Question : AS 3.0 - eventlistener

Hello,

I have a package StreamingAudioPlayer which plays one audio flv at a time.  I am calling this from my main movie using the code below.  In the player there is an event handler which checks for NetStream.Play.Stop (when currentFLV has stopped playing).  I would like my main movie to check for this and then continue with function "flvdone".  I think I should be able to add an eventlistener or perhaps there is another way?  Am new to AS 3.0, so thanks in advance for your help.

Cheers!
Code Snippet:
1:
2:
3:
4:
5:
6:
7:
8:
9:
var myAudio:StreamingAudioPlayer = new StreamingAudioPlayer(currentFLV);
	addChild(myAudio);
}
 
function audiodone(e:Event):void {
	trace("in audiodone!");
			counter++;
			playSection(1,S1Num);
}
Open in New Window Select All

Answer : AS 3.0 - eventlistener

Answered my own question.  Used dispatchEvent in my StreamingAudioPlayer class....
Random Solutions  
 
programming4us programming4us