flash Test on 2010-11-26

by Nekoeri88
♥0 | Line 11 | Modified 2010-11-26 18:39:27 | MIT License
play

ActionScript3 source code

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

package {
   import flash.display.Sprite;
   import flash.text.TextField;
   public class HelloWorld extends Sprite {
       public function HelloWorld() {
           var tf :TextField = new TextField;
           tf.text = "Hello, world!";
           addChild( tf );
       }
   }
}