それで、私が次のコードを持っているとしましょう:
public function first(text:String):String {
_text = text;
dispatchEvent(event);
//Want this statement to return the value of _text
//after handler has finished transforming text.
return _text;
}
//handles the event
public function handler(event:Event):void {
//does things, then changes the value of _text
_text = "next text that first needs to return";
}
メソッド(最初)が(ハンドラー)によって変換された後、_textの正しい値を返すことをどのように確認しますか?
前もって感謝します!