I ve added a script in my flash video players actionscript for when flash video ends it should goes to the first frame. Its working FINE! but theres a problem that an invalid "NaH:NaH" is showing after the video when it is goes to the first frame after finished playing.
This is happening after running the script(script for going to the first frame after video finished) to the existing action script.. I need to show the timeline as "00:00"
任何人都能够修改法典,告诉法律背后的问题是什么?
发言稿如下:
var listenerObject:Object = new Object();
listenerObject.complete = function(eventObject:Object):Void {
gotoAndPlay(0);
};
flv.addEventListener("complete", listenerObject);
“flv”为视频游戏区
请帮助
Thanks
Paul