// forked from nijitaro's Flexでhello world (ボタンイベント) <?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" > <!-- forked from nijitaro's Flexでhello world --> <mx:Script> <![CDATA[ [Bindable] private var btnLabel:String = "Click!"; private function helloWorld():void { myMsg.text = "Hello World!"; } ]]> </mx:Script> <mx:TextArea id="myMsg" /> <mx:Button id="myButton" label="{this.btnLabel}" click="helloWorld()" /> </mx:Application> forked from: Flexでhello world (ボタンイベント)