Flash Event写法
发布时间:2016-12-28 来源:查字典编辑
摘要:importmx.controls.Alert;Alert.show("click");]]>importmx.controls.Alert...
<?xmlversion="1.0"encoding="utf-8"?>
<mx:Applicationxmlns:mx="http://www.adobe.com/2006/mxml"layout="absolute">
<mx:Buttonx="144"y="190"label="Button">
<mx:click>
<![CDATA[
importmx.controls.Alert;
Alert.show("click");
]]>
</mx:click>
<mx:focusOut>
<![CDATA[
importmx.controls.Alert;
Alert.show("focusOut");
]]>
</mx:focusOut>
</mx:Button>
</mx:Application>
对优化代码很有好处