flash on 2011-7-28

by Nek
♥0 | Line 12 | Modified 2011-07-28 06:23:56 | MIT License
play

ActionScript3 source code

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

package {
    import flash.text.TextField;
    import flash.display.Sprite;
    public class FlashTest extends Sprite {
        public function FlashTest() {
            var _tf:TextField = new TextField();
            addChild(_tf);
            var o:Array = null;
            _tf.text = o.constructor.toString();
            
        }
    }
}