flash on 2016-7-16

by and
♥0 | Line 16 | Modified 2016-07-16 19:28:30 | MIT License
play

ActionScript3 source code

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

package {
    import flash.text.TextField;
    import flash.display.Sprite;
    public class FlashTest extends Sprite {
        
        private var tf:TextField;
        private var someVarr:Array = [];        
        
        public function FlashTest() {
            // write as3 code here..
            
            tf = new TextField();
            tf.width = 400;
            tf.height = 400;
            tf.textColor = 0;
            addChild(tf);
            
            tf.appendText("000\n");
        }
    }
}