flash on 2010-11-10
♥0 |
Line 11 |
Modified 2010-11-10 19:04:23 |
MIT License
archived:2017-03-20 08:05:40
ActionScript3 source code
/**
* Copyright wint ( http://wonderfl.net/user/wint )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Downloaded from: http://wonderfl.net/c/dv4O
*/
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 );
}
}
}