flash on 2009-6-22
♥0 |
Line 11 |
Modified 2009-06-22 21:30:39 |
MIT License
archived:2017-03-20 10:03:17
ActionScript3 source code
/**
* Copyright shinseki09 ( http://wonderfl.net/user/shinseki09 )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Downloaded from: http://wonderfl.net/c/kI4T
*/
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!";
addChild( tf );
}
}
}