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)
}