Rectangle 、getBounds(this)
摘要:
var container:Sprite = new Sprite();container.graphics.beginFill(0xffff00);container.graphics.drawCircle(0,0,100);container.graphics.endFill();container.x = 200;container.y = 200;addChild(container);var bounds:Rectangle = container.getBounds(this);trace("bounds.top======="+bounds.top);/*va 阅读全文