2

在某些情况下,我似乎无法让组件接收事件。

[编辑]

为了澄清,示例代码只是为了演示,我真正要问的是是否有一个可以添加侦听器的中心位置,一个可以可靠地向任意对象发送事件和从任意对象发送事件的中心位置。

我最终使用 parentApplication 来调度和接收我需要处理的事件。

[/编辑]

如果两个组件具有不同的父组件,或者如下例所示,一个是弹出窗口,则事件似乎永远不会到达侦听器(请参阅方法“popUp”以了解不起作用的调度):

<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" 
        layout="absolute" 
        initialize="init()">
<mx:Script>
    <![CDATA[
        import mx.controls.Menu;
        import mx.managers.PopUpManager;

        // Add listeners
        public function init():void
        {
            this.addEventListener("child", handleChild);
            this.addEventListener("stepchild", handleStepchild);
        }

        // Handle the no pop button event
        public function noPop(event:Event):void
        {
            dispatchEvent(new Event("child"));
        }

        // Handle the pop up
        public function popUp(event:Event):void
        {
            var menu:Menu = new Menu();
            var btnMenu:Button = new Button();
            btnMenu.label = "stepchild";
            menu.addChild(btnMenu);
            PopUpManager.addPopUp(menu, this);

            // neither of these work...
            this.callLater(btnMenu.dispatchEvent, [new Event("stepchild", true)]);
            btnMenu.dispatchEvent(new Event("stepchild", true));
        }

        // Event handlers

        public function handleChild(event:Event):void 
        {
            trace("I handled child");
        }

        public function handleStepchild(event:Event):void {
            trace("I handled stepchild");
        }
    ]]>
</mx:Script>

<mx:VBox>
    <mx:Button label="NoPop" id="btnNoPop" click="noPop(event)"/>
    <mx:Button label="PopUp" id="btnPop" click="popUp(event)"/>
</mx:VBox>
</mx:Application>

我可以想到变通办法,但似乎应该有一些中央事件总线......

我错过了什么吗?

4

2 回答 2

2

以上是正确的。您正在从 btnMenu 分派事件,但您没有监听 btnMenu 上的事件 - 您正在监听应用程序上的事件。

从应用程序调度:

dispatchEvent(new Event("stepchild", true));

或在 btnMenu 上收听

btnMenu.addEventListener("stepchild",handleStepChild);
btnMenu.dispatchEvent(new Event("stepchild",true));
于 2008-09-25T12:34:01.997 回答
0

您正在将侦听器附加到thisbtnMenu.

这应该有效:

dispatchEvent(new Event("stepchild", true));

附言。真的没有理由在this任何地方都放一个不必要的 ' ',除非明确要求它来克服范围问题。在这种情况下,您可以忽略所有内容this

于 2008-09-25T01:43:49.907 回答