Flex精華摘要–使用AS指令碼

來源:互聯網
上載者:User

在MXML檔案中實現ActionScript邏輯的幾種方法:
最簡單的方法,在一個MXML檔案中通過組件的事件直接書寫簡單的邏輯控制,但是並不推薦。

<?xml version="1.0" encoding="utf-8"?><br /><mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"><br /><mx:Panel title='My Application' ><br /><mx:HBox><br /><mx:Label text='Temperature in Farenheit:'/><br /><mx:TextInput id='farenheit' width='120'/><br /><mx:Button label='Convert' click='celsius.text=((int(farenheit.text)-32)/1.8).toString();' /><br /><mx:Label text='Temperature in Celsius:'/><br /><mx:Label id='celsius' width='200' fontSize='48'/><br /></mx:HBox><br /></mx:Panel><br /></mx:Application>

注意其中的類型轉換

 

第二種,在MXML檔案中定義函數調用,比較適合簡單的應用,如

<?xml version="1.0" encoding="utf-8"?><br /><mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"><br /> <mx:Script><br /><!--[CDATA[<br />public function calculate():void {<br />celsius.text=((int(farenheit.text)-32)/1.8).toString();<br />}<br />]]--><br /></mx:Script><br /><mx:Panel title='My Application' ><br /><mx:HBox><br /><mx:Label text='Temperature in Farenheit:'/><br /><mx:TextInput id='farenheit' width='120'/><br /><mx:Button label='Convert' click='calculate()' /><br /><mx:Label text='Temperature in Celsius:'/><br /><mx:Label id='celsius' width='200' fontSize='48'/><br /></mx:HBox><br /></mx:Panel><br /></mx:Application>

 

第三種,把MXML檔案和指令檔分開,便於專案管理

<?xml version="1.0" encoding="utf-8"?><br /><mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"><br /> <mx:Script source="sample.as"/><br /><mx:Panel title='My Application' ><br /><mx:HBox><br /><mx:Label text='Temperature in Farenheit:'/><br /><mx:TextInput id='farenheit' width='120'/><br /><mx:Button label='Convert' click='calculate()' /><br /><mx:Label text='Temperature in Celsius:'/><br /><mx:Label id='celsius' width='200' fontSize='48'/><br /></mx:HBox><br /></mx:Panel><br /></mx:Application></p><p>sample.as</p><p>public function calculate():void {<br />celsius.text=((int(farenheit.text)-32)/1.8).toString();<br />}

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.