所以我們可以說我有以下代碼:如何在ActionScript
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的正確的價值已經被改造後(處理) ?
預先感謝您!
ActionScript使用的格式'名稱:Type'的參數,而不是'型name'。 – Marty 2012-04-17 00:39:35
我曾經有過這樣的事情,但我在flex和java之間切換太多了,這就是混亂。感謝您指出:) – user220755 2012-04-17 00:41:26
是的,我和C#之間有同樣的問題:P – Marty 2012-04-17 01:00:06