In case Flash no longer exists; a copy of this site is included in the Flashpoint archive's "ultimate" collection.

Dead Code Preservation :: Archived AS3 works from wonderfl.net

Wonderfl.log

Wonderflクラスについて調べてみました。
ついでにtraceも使えるようになるサンプルを用意しました。
エディットの時に出てくるコンソールにtraceの内容が表示されます。
Get Adobe Flash player
by kacchan6 19 Jan 2011
package {
    import flash.utils.describeType;
    import flash.text.TextField;
    import flash.display.Sprite;
    public class FlashTest extends Sprite {
        public function FlashTest() {
            // write as3 code here..
            var tf:TextField = new TextField();
            tf.width = 465;
            tf.height = 465;
            addChild(tf);
            
            tf.text = describeType(Wonderfl);
            
            trace(123, 234, 345);
            trace(tf.text);
        }
    }
}

var trace:Function = Wonderfl.log;