This is driving me completely crazy.

Slapped the FLVPlayback component on the stage and gave it an instance name of dis1_flv.

Attached to an actionscript layer is the following:
var listenerObject:Object = new Object();
listenerObject.complete = function(eventObject:Object):Void {
_root.gotoandPlay("dis1 down");
trace("done");
}

dis1_flv.addEventListener("complete", listenerObject);

Pulls up the videos fine but then the video gets to the end and just hangs there. Here's the frustrating part: this project has eight videos in it, and two of those eight work perfectly, the video frame sliding down when the video is over.

Racking my brains trying to figure out the difference between these two and the other six. There is none! I think the eventlistener only likes certain videos because if I flip them and have a nonworking actionscript/flvplayback combo call up one of the videos that worked in another part of the project, well then suddenly it does what it's supposed too. But why would that make a difference, and how do I fix it. These videos were compressed in Sorrenson with the VP6_cd codec.

Any run into this before?