flash on 2013-11-18

by mwelsh
♥0 | Line 16 | Modified 2013-11-18 10:56:45 | 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/6msq
 */

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 max:int= 0x7fffffff;
            var min:int = 0x80000000;
            var max2:int = 0xffffffff;
            max2 = max-min;
            max++;
            tf.text = "" + (max) + " " + ( (max-min) | 0 );
        }
    }
}