Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package {
- import flash.display.Sprite;
- import flash.text.TextField;
- public class FlashPlayer11Test extends Sprite {
- public function FlashPlayer11Test() {
- var tf:TextField = new TextField;
- tf.x = tf.y = 10;
- tf.width = tf.height = 465;
- tf.text = JSON.stringify(tf, ["name", "x", "y", "width", "height"]);
- addChild(tf);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment