forked from: couldnt buildなのはなぜ?
♥0 |
Line 16 |
Modified 2011-02-22 02:18:46 |
MIT License
archived:2017-03-20 03:09:10
ActionScript3 source code
/**
* Copyright nov ( http://wonderfl.net/user/nov )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Downloaded from: http://wonderfl.net/c/mKIX
*/
<?xml version="1.0" encoding="utf-8"?>
<!-- forked from tarot's couldnt buildなのはなぜ? -->
<!-- forked from genms's Flex動作テストテンプレート -->
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" applicationComplete="onApplicationCompleteHandler(event);">
<mx:Script>
<![CDATA[
public function onApplicationCompleteHandler(event:Event):void {
// ここに処理を書く
}
public function btnClickHandler(event:Event):void {
// ここに処理を書く
txt.text = "Hello";
}
]]>
</mx:Script>
<mx:Button id="btn" label="click" click="btnClickHandler(event);"/>
<mx:TextArea id="txt" width="300" height="200"/>
</mx:Application>