《一》
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" creationComplete="createListener();">
<mx:Panel title="Currency Converter" width="450" height="150" x="20" y="20" layout="absolute">
<mx:Label text="Price in Dollars" x="25" y="37"/>
<mx:Label x="120" y="65" +String(price);
}
}
]]>
</mx:Script>
</mx:Application>
《二》
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
<mx:Panel width="350" height="200" x="10" y="10" title="Rate Customer Service" layout="absolute">
<mx:ComboBox x="20" y="20" />
</mx:Panel>
</mx:Application>
《三》
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
<mx:Label x="20" y="60" text="Email"/>
<mx:TextInput y="60" left="90" right="60"/>
<mx:Label x="20" y="90" text="Comments"/>
<mx:TextArea left="90" right="60" top="90" bottom="190"/>
<mx:Button label="Send" bottom="60" right="150"/>
</mx:Application>
《四》
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" creationComplete="feedRequest.send()">
<mx:Panel x="10" y="10" width="475" height="400" layout="absolute" title="{feedRequest.lastResult.rss.channel.title}">
<mx:DataGrid x="20" y="20" width="400" />
</mx:Application>