Details
-
Bug
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
Adobe Flex SDK 2.0 (Release)
-
None
-
Affected OS(s): All OS Platforms
Affected OS(s): All OS Platforms
Language Found: English
Description
Reproduction:
<mx:Application xmlns:mx="http://www.macromedia.com/2005/mxml" width="250" height="200" borderStyle="solid" backgroundColor="#FFFFFF">
<mx:Script>
<![CDATA[
// Import the Alert class.
import mx.controls.Alert;
public function alert(){
Alert.show("Alert text", "Alert Title", Alert.CANCEL | Alert.OK);
}
]]
>
</mx:Script>
<mx:VBox id="myVBox">
<mx:Button label="Show Alert" click="alert()" />
</mx:VBox>
</mx:Application>
Actual Results:
Alert shows OK and Cancel buttons in that order
Expected Results:
Alert shows Cancel and OK buttons in that order