Are you using NetStream to play the video using pure AS3 or some component? In AS3, you can monitor the stream status: stream.addEventListener(NetStatusEvent.NET_STATUS, statusChanged); protected function statusChanged(e:NetStatusEvent) { if(e.info.code == 'NetStream.Play.Stop') { //all done! } }
... View more