In case Flash no longer exists; a copy of this site is included in the Flashpoint archive's "ultimate" collection.

Dead Code Preservation :: Archived AS3 works from wonderfl.net

HelloWorld(ビルドできない: couldnt connect with server)

Get Adobe Flash player
by hacker_2_on08jc 18 May 2009
    Embed
/**
 * Copyright hacker_2_on08jc ( http://wonderfl.net/user/hacker_2_on08jc )
 * MIT License ( http://www.opensource.org/licenses/mit-license.php )
 * Downloaded from: http://wonderfl.net/c/6YKA
 */

package {
   import flash.display.Sprite;
   import flash.text.TextField;
   public class HelloWorld extends Sprite {
        /* 一度もビルドできたことがありません。
            couldnt connect with server
          */
       public function HelloWorld() {
           var tf :TextField = new TextField;
           tf.text = "Hello, world!";
           addChild( tf ); 
       }
   }
}