Hy! Can tell me anybody how to use this ... onPlayStatus? I can't find
to the internet and I need to know when the playback is finish.
//NetConnection
_netConnection = new NetConnection();
_netConnection.connect (null);
//NetSTream
_netStream = new NetStream(_netConnection);
_netStream.addEventListener(NetStatusEvent.NET_STATUS,
onNetStatusNetStream);
//MetaData
_client = new Object();
_client.onMetaData = onNetStreamMetaDataCallback;
_client.onPlayStatus = onNetStreamPlayStatusCallback;
_netStream.client = _client;
I use that and onMetaData give me the information about the stream,
but onPlayStatus not.
10x