0

actionscript でカスタム プロパティを使用してカスタム イベントを作成しました。カスタム プロパティを使用してカスタム イベント (Main.mxml 内) をディスパッチできますが、アプリケーションの他の場所でこのイベントをリッスンできません。カスタム コンポーネントでこのイベントをリッスンしようとしています。

デバッグすると、イベントが正しい値で正しくディスパッチされることを確認できます。

Main.mxml のスニペット:

var userid:String = result.charAt(4);
//dispatch a custom event in which we store the userid
var event_userid:MyEvent = new MyEvent(MyEvent.COMPLETE,userid);
dispatchEvent(event_userid);

CustomEvent クラス:

package ownASClass
{
    {
//http://stackoverflow.com/questions/1729470/attaching-a-property-to-an-event-in-flex-as3
    import flash.events.Event;

    public class MyEvent extends Event
    {

        public static const COMPLETE:String = "MyEventComplete";

        public var myCustomProperty:*;

        public function MyEvent(type:String, prop:*) :void
        {
            super(type,true);
            myCustomProperty = prop;

        }

        //override clone() so your event bubbles correctly
        override public function clone() :Event {

            return new MyEvent(this.type, this.myCustomProperty)

        }
    }
}       

}

カスタム コンポーネントでこのイベントをリッスンします。

//init gets called as: initialize="init();
protected function init():void
        {
            //add evt listener for custom event to get userid
            this.parentApplication.addEventListener(MyEvent.COMPLETE,getUserid);
            //my custom component is part of a viewstack defined in main.mxml
        }

protected function getUserid(event:Event):void
        {
            //do something (but this never gets called)

        }
4

3 に答える 3

1
protected function init():void
    {
        //add evt listener for custom event to get userid
        this.parentApplication.addEventListener(MyEvent.COMPLETE,getUserid);
        //my custom component is part of a viewstack defined in main.mxml
    }

次のように上記の行を変更してみてください -

this.addEventListener(MyEvent.COMPLETE,getUserid);
于 2012-12-31T08:31:24.317 に答える
0

イベントは通常、子ウィンドウから親、アプリケーション (main.mxml) へのチェーンを「バブルアップ」します。

http://livedocs.adobe.com/flex/3/html/help.html?content=events_08.html

イベントを使用してサブオブジェクトにシグナルを送信しようとしている場合は、そのサブオブジェクトをターゲットにして、イベント リスナーを登録する必要があります。

于 2012-12-29T20:08:37.567 に答える
0

これに対する回避策を使用して、カスタム イベントを実際にディスパッチする必要がないことに気付きました。メインアプリケーションでユーザーIDを宣言し、コンポーネントで次のように呼び出しました:

public var userid:String = FlexGlobals.topLevelApplication.userid;
于 2012-12-29T21:15:34.300 に答える