flash on 2011-3-19
♥0 |
Line 14 |
Modified 2011-03-19 11:51:49 |
MIT License
archived:2017-03-20 09:36:56
ActionScript3 source code
/**
* Copyright mameshiba ( http://wonderfl.net/user/mameshiba )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Downloaded from: http://wonderfl.net/c/qpOY
*/
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 );
tf.x = 150;
tf.y = 300;
tf.rotationY = 60;
}
}
}