flash on 2012-4-7

by itkr
♥0 | Line 12 | Modified 2012-04-07 04:04:11 | MIT License
play

ActionScript3 source code

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

package {
    import flash.text.TextField;
    import flash.display.Sprite;
    public class FlashTest extends Sprite {
        public function FlashTest() {
            // write as3 code here..
            var n:Number = 100000*0.108;
            var t:TextField = new TextField();
            t.text = n.toString();
            stage.addChild(t);
        }
    }
}