Hi,
I am new to Flash lite coding.. I am playing an flv video using net stream method below is the code... But once I get an incoming call the video is playing in the background with out pausing and interrupting the call...
var myConnection:NetConnection = new NetConnection();
myConnection.connect( null );
var myStream:NetStream = new NetStream( myConnection );
videoDisplay.attachVideo( myStream);
myStream.play("Videos/Theory.flv");
All I need to know is how to add an event listener to listen to incoming calls and once received then trigger a function to pause the video...
Regards,
Elmi...




