flash on 2009-5-14

by hacker_v4337s3u
♥0 | Line 11 | Modified 2009-05-14 20:36:26 | MIT License
play

ActionScript3 source code

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

package {
    import flash.display.Sprite;
    import flash.text.TextField;
    public class FlashTest extends Sprite {
        public function FlashTest() {
            // write as3 code here..
            var t:TextField= new TextField;
            t.text="おはようございます。";
            this.addChild(t);
        }
    }
}