AS3 - 添加预加载器 swf 后不再接收事件

发布于 2024-08-04 17:48:57 字数 481 浏览 8 评论 0原文

这是我最初的结构: 主.swf -> child.swf

主要加载各种子 swf。我正在从子 swf 中调度事件,而 main 正在监听这些事件。一切都运转良好。

然后,我添加了一个预加载器swf,所以现在的结构是: 加载程序.swf ->主.swf -> child.swf

我根本没有改变 main 和 child 之间的关系,但是现在 main 不再接收 child 调度的事件。我知道他们正在被调度(使用 Console.log)。冒泡设置为 true。为什么仅仅因为我用加载器包装了所有内容, main 就不再接收来自子进程的事件?

编辑: 我尝试将 useWeakReference 更改为 false,以防侦听器被垃圾收集:

this.addEventListener(MyEvent.HELP_ME, imDesperate, false, 0, false);

这没有任何区别。

This was my initial structure:
main.swf -> child.swf

Main loads various child swfs. I am dispatching events from the child swfs, and main is listening for the events. Everything was working great.

Then, I added a preloader swf, so now the structure is:
loader.swf -> main.swf -> child.swf

I did not change the relationship between main and child at all, but now events dispatched by the child are no longer received by main. I know they are getting dispatched (using Console.log). Bubbling is set to true. Why would main no longer receive events from a child just because I wrapped everything with a loader?

EDIT:
I tried changing useWeakReference to false, in case the listener was getting garbage collected:

this.addEventListener(MyEvent.HELP_ME, imDesperate, false, 0, false);

That didn't make any difference.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

后eg是否自 2024-08-11 17:48:57

为了其他访问此问题的人的利益,答案与 ApplicationDomain 有关(概述 此处)并在此处解决。

For the benefit of others visiting this question, the answer is to do with the ApplicationDomain (overview here) and was solved here.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文