Mega Code Archive

 
Categories / Flex / Components
 

Alert dialog box With Default Button

<?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical">   <mx:Script>            import mx.events.CloseEvent;       import mx.controls.Alert;              [Embed(source="a.png")]       private var questionIcon:Class;              private function simpleAlert():void{         Alert.show("This Alert dialog's default button is Cancel",            "Alert with default Button", (Alert.OK | Alert.CANCEL),            null, null, null, Alert.CANCEL);       }            </mx:Script>      <mx:Button label="Show Alert Message" click="simpleAlert()"/>     </mx:Application>