views:

21

answers:

1

NetStatusEvent has only one type of event: NetStatusEvent.NET_STATUS; but it comes with many codes for various cases.

Here they are, listed: http://bit.ly/ce3TvC

However, a lot of them are not triggered for me. I know some are FMS specific but I'm talking about "NetStream.Play.Stop", "NetStream.Pause.Notify" or "NetStream.Unpause.Notify".

Is there a case when they shouldn't be triggered, even though I'm calling NetStream's control functions (which take effect), or a known issue around this matter?

Thanks!

A: 

Without seeing your code it's hard to guess.

Maybe check the obvious first: are you sure you added a listener to the NetStream instance? Since both NetConnection and NetStream dispatch NetStatusEvent you may have only added the listener to your NetConnection instance.

Patrick P