Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Not A Problem
-
Adobe Flex SDK 3.0 (Release)
-
None
-
None
-
Affected OS(s): All OS Platforms
Language Found: English
Description
Steps to reproduce.
1. Compile and run attached main.mxml file (or run main.swf).
Actual Results:
Alert 1: main0
Alert 3: main0
Alert 2: undefined
Expected Results:
Alert 2: main0
Workaround:
[code]
private function onComplete():void {
Alert.show(String(this.name), "Alert 1", Alert.OK, this, onClose);
}
private function onClose(evt:CloseEvent):void {
Alert.show(String(this.name), "Alert 4"); // main0
}
[/code]