Hello World
基本です。
♥0 |
Line 12 |
Modified 2011-03-14 23:50:56 |
MIT License
archived:2017-03-10 08:57:53
ActionScript3 source code
/**
* Copyright tarotarorg ( http://wonderfl.net/user/tarotarorg )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Downloaded from: http://wonderfl.net/c/h6k2
*/
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!";
tf.scaleX = tf.scaleY = 4;
addChild( tf );
}
}
}