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

Don't give up.

これからの時代の基本です。
Get Adobe Flash player
by tarotarorg 14 Mar 2011
    Embed
/**
 * Copyright tarotarorg ( http://wonderfl.net/user/tarotarorg )
 * MIT License ( http://www.opensource.org/licenses/mit-license.php )
 * Downloaded from: http://wonderfl.net/c/yJQ3
 */

// forked from tarotarorg's Hello World
package {
   import flash.display.Sprite;
   import flash.text.TextField;
   public class HelloWorld extends Sprite {
       public function HelloWorld() {
           var tf :TextField = new TextField;
           tf.text = "Don't give up, Japan    \nDon't give up, Tohoku";
           tf.scaleX = tf.scaleY = 4;
           tf.width = 500;
           addChild( tf );
       }
   }
}