<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
<mx:Style>
Alert {
font-size:12px;//可以在这里加其他需要设定的样式
}
Alert{
font-size: 12pt;
}
</mx:Style>
<mx:Script>
<![CDATA[
import mx.controls.Alert;
public function showMsg():void{
Alert.show("Flex提示框样式测试!");
}
]]>
</mx:Script>
<mx:Button x="248" y="279" label="ShowMessageBox" click="showMsg()"/>
</mx:Application>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
<mx:Style>
Alert {
font-size:12px;//可以在这里加其他需要设定的样式
}
Alert{
font-size: 12pt;
}
</mx:Style>
<mx:Script>
<![CDATA[
import mx.controls.Alert;
public function showMsg():void{
Alert.show("Flex提示框样式测试!");
}
]]>
</mx:Script>
<mx:Button x="248" y="279" label="ShowMessageBox" click="showMsg()"/>
</mx:Application>