如何通过事件将数据从 swf1 传递到 swf2(前者稍后加载)
我有一个 swf(Swf1) 调度 CustomEvent
Swf1 : dispatchEvent( new CustomEvent("eventName", obj)) //自定义事件是用 Swf1 编写的,允许在调度时附加数据。 // 请告知是否有其他方法可以使用内置 AS3 API 来执行此操作。
现在Swf2:(加载Swf1) 添加了监听器 函数 onswf1loadComplete(e:Event){ _movie = MovieClip(e.target.content); _movie.addEventListener("事件名称", callrequiredFunction); // 如何获取这里的 obj? (除了
我也需要在 Swf2 中定义 CustomEvent)
I have a swf(Swf1)that dispatches a CustomEvent
Swf1 :
dispatchEvent( new CustomEvent("eventName", obj)) //Custom event is written in Swf1 that allows to attach data on dispatch. // do tell if there is anyother way to do this using inbuilt AS3 APIs.
Now Swf2: (loads Swf1)
added listener
function onswf1loadComplete(e:Event){
_movie = MovieClip(e.target.content);
_movie.addEventListener("eventName", callrequiredFunction);
// how to get the obj here?
}
(except that I need to define CustomEvent in Swf2 too)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将 SWf 的加载外部化到另一个类,该类将处理两个 swf 之间的通信...
You could externalize the loading of the SWfs to another class which would handle the communication between the two swfs...