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

flash player 11 test

Get Adobe Flash player
by sugyan 26 Aug 2013
package {
    import flash.text.TextField;
    import flash.display.Sprite;
    public class FlashTest extends Sprite {
        public function FlashTest() {
            // write as3 code here..
            var t:TextField = new TextField();
            t.width = 465.0;
            t.text = JSON.stringify({ hoge: ["fuga", "piyo"] });
            this.addChild(t);            
        }
    }
}