AS3:让加载的 SWF 中的事件侦听器捕获来自父 SWF 的事件
这不是AS3:向加载的swf添加事件侦听器,实际上这似乎是非镜像解决方案的镜像情况。
我有一个测试闪存文件,它在第一帧的操作中注册自己的侦听器。
trace("it's going to be OK");
stage.addEventListener(KeyboardEvent.KEY_DOWN, aKey);
不幸的是,当 .swf 加载到另一部电影中时,这两条线都不起作用。 假设在这种情况下 stage
对象是错误的,应该使用哪个对象来获取侦听器?
是否有必要重写父 swf 中的加载程序,如链接问题中所述?
This isn't an exact duplicate of AS3: add event listener to loaded swf, actually it seems to be a mirror situation with non-mirror solution..
I have a test flash file that registers its own listener at first frame's actions.
trace("it's going to be OK");
stage.addEventListener(KeyboardEvent.KEY_DOWN, aKey);
Unfortunately neither line works when .swf is loaded into another movie.
Assuming that stage
object is wrong for such situations, which object should be used to get listener?
Is it necessary to rewrite loader in parent swf, as said in the linked question?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在您正在加载的 SWF 中尝试以下操作:
Try this inside the SWF you're loading: