flash on 2010-6-10
♥0 |
Line 12 |
Modified 2010-06-10 10:13:42 |
MIT License
archived:2017-03-20 20:28:33
ActionScript3 source code
/**
* Copyright ir_77 ( http://wonderfl.net/user/ir_77 )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Downloaded from: http://wonderfl.net/c/uZCs
*/
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.text = "hello, how are you?";
addChild( tf );
}
}
}