flash on 2009-8-6

by TheCoolMuseum
♥0 | Line 12 | Modified 2009-08-06 16:28:35 | MIT License
play

ActionScript3 source code

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

package {
    import flash.display.Sprite;
    import flash.text.TextField;
    
    public class FlashTest extends Sprite {
        public function FlashTest() {
            var a:Number = 0;
            
           
            var t:TextField = new TextField();            
            t.text = "a=" + a;
            addChild(t);
        }
    }
}