FlashTest

by siouxcitizen
♥0 | Line 11 | Modified 2009-03-07 09:10:16 | MIT License
play

ActionScript3 source code

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

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

Forked