Video Event Completed Problem
CS6 Flash Player (IE: 11,8,800,94 installed) and (Chrome: 11,8,800,97 installed)
Just started happening where my fl.video.VideoEvent.COMPLETE is not working. It is proving to be inconsistent. Sometimes it works and sometimes not. I've tried a number of ways and still having problems. Some of the videos I am using are older and I've recompiled them with CS6 Encoder... that helped a little. Replaced the FLVPlayback component from 2.1 to 2.5... that helped a little. Rearranged my Listener in the code... that helped a little.
I'm thinking there has been something happen to the Flash Player and am wandering if anyone else has been having this experience? This has been going on for two weeks now.
Some of these courses I've been experiencing are older ones. I've updated the fla to CS6, made all the events for video as fl.video.VideoEvent.COMPLETE. Used the import fl.video.VideoEvent.
SAMPLE: Just this morning changed the function from (e:fl.video.VideoEvent) to (e:Event), this sometimes helps as well.
OnscreenVideo.source = MovieClip(root).mediaFolder + "FS_BLY_aii_14c.flv";
OnscreenVideo.addEventListener(fl.video.VideoEvent.READY, VidReady14c);
OnscreenVideo.addEventListener(fl.video.VideoEvent.COMPLETE, VideoStopped14c);
function VideoStopped14c(e:Event):void{
trace("VideoStopped14c: ", OnscreenVideo.source);
OnscreenVideo.removeEventListener(fl.video.VideoEvent.COMPLETE, VideoStopped14c);
OnscreenVideo.removeEventListener(fl.video.MetadataEvent.CUE_POINT, cpCuePoint14c);
OnscreenVideo.visible = false;
}//end function VideoStopped14c
THANKS for your time!!!!