Video Listener Object in AS3

Hi,

I have a movie with an flv video in the middle of it. I want the timeline to continue moving once the video has completed. How is this done in AS3?

In AS2, I was able to use this code, but now? not so much.

var listenerObject:Object = new Object();
listenerObject.cuePoint = function(eventObject:Object):Void {
        _root.attachMovie("movie_clip", "movie_clip", 1);
}
movie_E.addEventListener("cuePoint", listenerObject);

any help would be appreciated!!!