flash中的actionscript3自定义事件
我想在影片剪辑的末尾调度一个自定义事件。 我在最后一帧写了代码:
停止();
导入flash.events.Event;
var evt:事件 = 新 事件('完成写作',true); this.dispatchEvent(evt);
this.addEventListener("完成写作", evtHandler);
函数 evtHandler(evt:Event):void{ 追踪('完成'); }
不起作用。 有什么建议吗? 非常感谢。
I want to dispatch a custom event at the end of my movieclip.
I wrote the code on the last frame:
stop();
import flash.events.Event;
var evt:Event = new
Event('finishedWriting', true);
this.dispatchEvent(evt);this.addEventListener("finishedWriting",
evtHandler);function evtHandler(evt:Event):void{
trace('finished'); }
but this does not work.
Any suggestions?
Thank you very much.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您在设置侦听器之前分派事件。
You're dispatching the event before the listener is set up.