flash on 2013-11-17

by mwelsh
♥0 | Line 13 | Modified 2013-11-17 23:09:22 | MIT License
play

ActionScript3 source code

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

package {
    import flash.display.*;
    import flash.text.*;
    public class FlashTest extends Sprite {
        public function FlashTest() {
            var tf : TextField = new TextField();
            addChild(tf);
            var a:int = 0x7fffffff;
            var b:int = a+1;
            tf.text = b.toString();
            
        }
    }
}