flash on 2011-10-15

by poepoemix
♥0 | Line 12 | Modified 2011-10-16 21:57:33 | MIT License
play

ActionScript3 source code

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

package {
    import flash.text.TextField;
    import flash.display.Sprite;
    public class FlashTest extends Sprite {
        private var text:TextField = null;
        public function FlashTest() {
            text = new TextField();
            text.text = "test";
            addChild(text);
        }
    }
}