Question
event handler won't work in Firefox
I have an external swf which launch a flv video. On the first
frame of the fla I have a function to handle an event which will
load next swf when the video complete playing. This is the code:
function playerCompleteHandler(evnt:Object) {
//load next swf
_root.loader_mc.loadMovie("intro_community.swf");
}
flv_welcome.addEventListener("complete", playerCompleteHandler);
It works well with IE and Safari but not Firefox. Is there any other way to handle this?
Any help will be greatly preciated.
function playerCompleteHandler(evnt:Object) {
//load next swf
_root.loader_mc.loadMovie("intro_community.swf");
}
flv_welcome.addEventListener("complete", playerCompleteHandler);
It works well with IE and Safari but not Firefox. Is there any other way to handle this?
Any help will be greatly preciated.