I’m using flash.net.NetStream and flash.media.Video to play a .flv, here is some code:
var stream:NetStream = new NetStream(connection);
//next line is to avoid an error message
stream.client = {onMetaData: function(obj:Object):void {}}
var video:Video = new Video();
video.attachNetStream(stream);
stream.play("url.to/video");
addChild(video);
That plays the video, but how I can know WHEN the video has played from the beginning to the end? How to know if the video was played ALL it’s length?
PS: Sorry for my bad English.
Bartek answer is the most accurate but I’ve found that the code I need is
"NetStream.Play.Stop"The code
"NetStream.Play.Complete"doesn’t exist.This works since you can’t STOP the stream, only pause it (and resume it), so the only way to this status arise is to end the video playback reaching the end (and that’s what I need)
PS: Sorry for my bad English.