Okay, a little clearer now.
Unless you are importing them into Flash yourself there really isn't a way to know when the end is reached. If you were IN Flash you could test for when the buffer was empty and move on from there, but as you said you weren't...
My advice is to figure out how long the FLV will be. if it is the same length each time you can set up a meta refresh to the new dynamic page, which also has a meta refresh back to the movie, etc... This would be easiest, if not crude.
If you are able to just use Flash and import the dynamic pages as well as the FLVs then you can use things like
Code:
import mx.video.*;
var listenerObject:Object = new Object();
listenerObject.complete = function():Void {
_root.gotoAndPlay("frame3");
trace(this);
};
my_FLVPlybk.addEventListener("complete", listenerObject);
to see when the movie has ended.
Bookmarks