forked from: flash on 2009-7-15

by chocorobokun forked from flash on 2009-7-15 (diff: 1)
♥0 | Line 11 | Modified 2009-07-15 18:02:34 | MIT License
play

ActionScript3 source code

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

// forked from chocorobokun's flash on 2009-7-15
package {
    import flash.display.Sprite;
    import flash.text.TextField;
    public class FlashTest extends Sprite {
        public var text:TextField = new TextField()
        public function FlashTest() {
            // write as3 code here..
            addChild(text)
	    text.text = "chocorobokun Jago \n"
        }
    }
}