AS3概念类似于非显示对象中的事件冒泡?

发布于 2024-12-01 16:24:54 字数 179 浏览 0 评论 0原文

Flash/AS3 中的事件与显示列表密切相关。有捕获、目标和冒泡阶段,这对于舞台上可见的对象来说非常有用。

但是对于显示列表之外的非显示对象是否有类似的概念?

如果我们有对象 A、B 和 C,其中 C 是在对象 B 中创建的,B 是在对象 A 中创建的,并且它们都不是显示对象:A 如何监听 C 中发生的事情?

Events in Flash/AS3 are very much linked to the display list. There is the capture, target, and bubbling phase, which is great when it comes to objects visible on the stage.

But is there a similar concept for non display objects, outside of the display list?

If we have objects A, B and C, where C was created in object B, and B was created in object A, and none of them are display objects: How can A listen for things happening in C?

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

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

发布评论

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

评论(1

许一世地老天荒 2024-12-08 16:24:54

您可以使用至少两种策略来解决您的问题:

1) 重新调度事件。假设 C 调度一些事件。在 B 中,我们订阅此事件并重新调度它:

var c:C = new C();
c.addEventListener("myEvent", myEventHandler);

private function myEventHandler (event:Event):void
{
    dispatchEvent(event);
}

记住您应该为您的自定义事件类正确实现 clone()

您还可以将事件从 C 转换为 B 中的其他事件并分派它。

2) 将C传递给A。您可以使用 接口 flash 来完成此操作。 events.IEventDispatcher

类似于以下内容:

B 中:

private var _c:IEventDispatcher;

public function get innerInstance():IEventDispatcher
{
    return _c;
}

public function B()
{
    _c = new C();
}

A 中:

var b:B = new B();
b.innerInstance.addEventListener("myEvent", myEventHandler);

You can solve your problem using at least two strategies:

1) Redispatching of events. Say C dispatches some event. In B we subscribe this event and redispatch it:

var c:C = new C();
c.addEventListener("myEvent", myEventHandler);

private function myEventHandler (event:Event):void
{
    dispatchEvent(event);
}

Remember you should implement clone() properly for your custom event class in this case.

You also can translate event from C to some other event in B and dispatch it.

2) Pass C to A. You can do it using interface flash.events.IEventDispatcher.

Something like the following:

In B:

private var _c:IEventDispatcher;

public function get innerInstance():IEventDispatcher
{
    return _c;
}

public function B()
{
    _c = new C();
}

In A:

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