An Alert dialog with custom icon
<?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("An Alert dialog with custom icon",
"Alert Event Handler", 0,null, null,
questionIcon);
}
</mx:Script>
<mx:Button label="Show Alert Message" click="simpleAlert()"/>
</mx:Application>
Related examples in the same category