flash on 2009-6-12
♥0 |
Line 11 |
Modified 2009-06-12 19:40:13 |
MIT License
archived:2017-03-29 13:04:57
ActionScript3 source code
/**
* Copyright hacker_cif_rxsb ( http://wonderfl.net/user/hacker_cif_rxsb )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Downloaded from: http://wonderfl.net/c/fejS
*/
package {
import flash.display.Sprite;
import flash.text.TextField;
public class HelloWorld extends Sprite {
public function HelloWorld() {
var tf:TextField = new TextField();
tf.text = "helleworld";
addChild(tf);
}
}
}