forked from: couldnt buildなのはなぜ?

by shohei909
うちの環境ではbuildできました。

サーバの調子が悪かったからとかではないでしょうか?
もういちど試してみるといいと思います。
♥0 | Line 16 | Modified 2011-02-04 21:05:26 | MIT License
play

ActionScript3 source code

/**
 * Copyright shohei909 ( http://wonderfl.net/user/shohei909 )
 * MIT License ( http://www.opensource.org/licenses/mit-license.php )
 * Downloaded from: http://wonderfl.net/c/55HJC
 */

<?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>