Don't give up.
これからの時代の基本です。
/**
* 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 );
}
}
}