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!

Get Adobe Flash player
by axcelwork 16 Mar 2009
    Embed
package {
     import flash.display.Sprite;
     import flash.text.TextField;
     
     public class HelloWorld extends Sprite {
         
         public function HelloWorld():void {
             /* ここでしか使わない変数なのでここで定義 */
             var txtTitle:TextField = new TextField();
             
             txtTitle.text = "HelloWorld!!!!"
             
             addChild( txtTitle );
        }
    }
}