扫一扫
分享文章到微信
扫一扫
关注官方公众号
至顶头条
作者:冷枫 来源:CSDN 2007年9月23日
关键字: 软件
1. <mx:Application xmlns:mx='http://www.macromedia.com/2003/mxml'>
2. <!-- Specify the ActionScript file containing the function. -->
3. <mx:Script source='sample3script.as'/>
4. <mx:Panel title='My Application' >
5. <mx:HBox>
6. <mx:Label text='Temperature in Farenheit:'/>
7. <mx:TextInput id='farenheit' width='120'/>
8. <mx:Button label='Convert' click='calculate();' />
9. <mx:Label text='Temperature in Celsius:'/>
10. <mx:Label id='celsius' width='120' fontSize='48'/>
11. </mx:HBox>
12. </mx:Panel>
13. </mx:Application>
sample.as文件代码如下:
function calculate() {
2. celsius.text=(farenheit.text-32)/1.8;
3. }
第四种,使用MXML组件方式,更好的封装实现。下面的例子定义了一个tempConverter组件
1. <mx:Application xmlns:mx='http://www.macromedia.com/2003/mxml'
2. initialize='converter.setupListener()'>
3. <local:TempConverter id='converter' xmlns:local='*'/>
4. <mx:Panel title='My Application' >
5. <mx:HBox>
6. <mx:Label text='Temperature in Farenheit:' />
7. <mx:TextInput id='farenheit' width='120' />
8. <mx:Button id='myButton' label='Convert' />
9. <mx:Label text='Temperature in Celsius:' />
10. <mx:Label id='celsius' width='120' fontSize='24' />
11. </mx:HBox>
12. </mx:Panel>
13. </mx:Application>
TempConverter.as文件代码如下:
1. class TempConverter implements mx.core.MXMLObject{
2. public var view;
3. function initialized(doc : Object, id : String) : Void {
4. view = doc;
5. }
6. function setupListener() : Void {
7. view.myButton.addEventListener('click', this);
8. }
9. function click(event) {
10. view.celsius.text=(view.farenheit.text-32)/1.8;
11. }
12. }
Trackback: http://tb.blog.csdn.net/TrackBack.aspx?PostId=754312
如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。