<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
		layout="vertical" 
		verticalAlign="middle" 
		backgroundColor="white" viewSourceURL="srcview/index.html"> 

    <mx:Script>
        <![CDATA[
            import mx.controls.Alert;  

            private var alert:Alert;  

            private function showAlert():void {
                var text:String = "Lorem ipsum dolor sit amet, consectetuer adipiscing elit.nntHello World";
                var title:String = "This is the title of the Alert window";
                alert = Alert.show(text, title, Alert.YES | Alert.NO);
            }
        ]]>
    </mx:Script>  

    <mx:Button label="Alert.show()" click="showAlert();" />  

</mx:Application>
