Before I made this thread, I searched on Google and saw that some people were using a COMPLETE listener to get this to work so I copied and pasted it into my project from some random guy on the internet and changed the function name and all that other stuff to make it work with my video but I must have obviously done something wrong because it didn't work. I then deleted the code and went back to my original code/file because I saw no reason in keeping something that doesn't work. Now, when you asked me to show you what I tried before, I had already deleted the code and had gone to the original file so I had no idea where to find it again and show you. Coding isn't really thing so I might be getting confused here with what you are asking me to do. When you say "use a COMPLETE listener", I have no idea where to start because I don't memorize these sort of stuff and I just copied and pasted it from some guy on the internet when I used it on my project.
you said:
in my project I have this FLV video embeded
this suggests to me that you imported your video into your flash file... so read this link:
http://help.adobe.com/en_US/Flash/10.0_UsingFlash/WSBDABD69F-D146-4e5c-9340-BF717A10426C.html
specifically:
A best practice is to place video inside a movie clip instance, because you have the most control over the content. The video’s Timeline plays independently from the main Timeline. You do not have to extend your main Timeline by many frames to accommodate the video, which can make working with your FLA file difficult.so you may want to control the timeline of the movieclip your video is embedded in like this...
videoMc.addEventListener(Event.ENTER_FRAME, goNext);
function goNext(e:Event){
if(videoMc.currentFrame == videoMc.totalFrames){
//go to next scene or frame
}
}