<?xml version="1.0" encoding="utf-8" ?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
<mx:Style>
Alert {
titleStyleName: "alertTitle";
messageStyleName: "alertMessage";
buttonStyleName: "alertButton";
}
.alertTitle {
letterSpacing: 0;
fontSize: 18;
color: red;
}
.alertMessage {
letterSpacing: 0;
fontSize: 18;
fontWeight: normal;
color: black;
}
.alertButton {
letterSpacing: 0;
fontSize: 12;
}
</mx:Style>
<mx:Script>
<![CDATA[
import mx.controls.Alert;
private function showAlert():void {
Alert.buttonWidth = 120;
Alert.show(
"123456789",
"abcd",
Alert.NO | Alert.YES
);
}
]]>
</mx:Script>
<mx:Button label="Click Me" click="showAlert()"/>
</mx:Application>
来源于:http://www.riachina.com/showtopic-12328.aspx###
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
<mx:Style>
Alert {
titleStyleName: "alertTitle";
messageStyleName: "alertMessage";
buttonStyleName: "alertButton";
}
.alertTitle {
letterSpacing: 0;
fontSize: 18;
color: red;
}
.alertMessage {
letterSpacing: 0;
fontSize: 18;
fontWeight: normal;
color: black;
}
.alertButton {
letterSpacing: 0;
fontSize: 12;
}
</mx:Style>
<mx:Script>
<![CDATA[
import mx.controls.Alert;
private function showAlert():void {
Alert.buttonWidth = 120;
Alert.show(
"123456789",
"abcd",
Alert.NO | Alert.YES
);
}
]]>
</mx:Script>
<mx:Button label="Click Me" click="showAlert()"/>
</mx:Application>
来源于:http://www.riachina.com/showtopic-12328.aspx###