flash on 2012-11-30
♥0 |
Line 11 |
Modified 2012-11-30 12:44:42 |
MIT License
archived:2017-03-20 10:36:28
ActionScript3 source code
/**
* Copyright peace96beats ( http://wonderfl.net/user/peace96beats )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Downloaded from: http://wonderfl.net/c/wWlH
*/
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 );
}
}
}