flash on 2009-7-6
♥0 |
Line 11 |
Modified 2009-07-06 13:53:00 |
MIT License
archived:2017-03-20 10:30:57
ActionScript3 source code
/**
* Copyright hacker_7bnhd5gd ( http://wonderfl.net/user/hacker_7bnhd5gd )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Downloaded from: http://wonderfl.net/c/xBBy
*/
package {
import flash.display.Sprite;
import flash.text.TextField;
public class HelloWorld extends Sprite {
public function HelloWorld() {
var tf :TextField = new TextField;
tf.text = "Hellow, world!";
addChild( tf );
}
}
}