- 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);
- }
- }
- }