9

誰かが私に、オブジェクトがアタッチされたactionscript3のイベントをディスパッチする方法の簡単な例を教えてもらえますか?

dispatchEvent( new Event(GOT_RESULT,result));

これが私resultがイベントと一緒に渡したいオブジェクトです。

4

3 に答える 3

33

イベントを介してオブジェクトを渡したい場合は、カスタムイベントを作成する必要があります。コードは次のようになります。

public class MyEvent extends Event
{
    public static const GOT_RESULT:String = "gotResult";

    // this is the object you want to pass through your event.
    public var result:Object;

    public function MyEvent(type:String, result:Object, bubbles:Boolean=false, cancelable:Boolean=false)
    {
        super(type, bubbles, cancelable);
        this.result = result;
    }

    // always create a clone() method for events in case you want to redispatch them.
    public override function clone():Event
    {
        return new MyEvent(type, result, bubbles, cancelable);
    }
}

次に、上記のコードを次のように使用できます。

dispatchEvent(new MyEvent(MyEvent.GOT_RESULT, result));

そして、必要に応じてこのイベントを聴きます。

addEventListener(MyEvent.GOT_RESULT, myEventHandler);
// more code to follow here...
protected function myEventHandler(event:MyEvent):void
{
    var myResult:Object = event.result; // this is how you use the event's property.
}
于 2012-09-25T20:08:48.977 に答える
3

この投稿は少し古いですが、誰かを助けることができる場合は、次のようにDataEventクラスを使用できます。

dispatchEvent(new DataEvent(YOUR_EVENT_ID, true, false, data));

ドキュメンテーション

于 2016-05-04T14:26:24.227 に答える
0

適切に設計されていれば、オブジェクトをイベントに渡す必要はありません。
代わりに、ディスパッチングクラスでパブリック変数を作成する必要があります。

public var myObject:Object;

// before you dispatch the event assign the object to your class var
myObject = ....// whatever it is your want to pass
// When you dispatch an event you can do it with already created events or like Tomislav wrote and create a custom class.

// in the call back just use currentTarget
public function myCallBackFunction(event:Event):void{

  // typecast the event target object
  var myClass:myClassThatDispatchedtheEvent = event.currentTarget as myClassThatDispatchedtheEvent 
  trace( myClass.myObject )// the object or var you want from the dispatching class.


于 2012-09-25T20:38:20.640 に答える