layout="vertical"
verticalAlign="middle"
backgroundColor="white">
import mx.controls.Alert;
private var alert:Alert;
private function showAlert():void {
var text:String = "Hello World";
var title:String = "title";
alert = Alert.show(text, title, Alert.YES | Alert.NO);
}