Guest User

Untitled

a guest
May 25th, 2012
23
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. package {
  2. import flash.display.Sprite;
  3. import flash.text.TextField;
  4. public class FlashPlayer11Test extends Sprite {
  5. public function FlashPlayer11Test() {
  6. var tf:TextField = new TextField;
  7. tf.x = tf.y = 10;
  8. tf.width = tf.height = 465;
  9. tf.text = JSON.stringify(tf, ["name", "x", "y", "width", "height"]);
  10. addChild(tf);
  11. }
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment