How to resize a circle

All

How do i resize a circle(display.newCircle) after it has been created?
doing the x and y works fine but not the radius.

Cheers
Rotter
[import]uid: 31201 topic_id: 5876 reply_id: 305876[/import]

Use xScale or yScale or width or height.

ie:
circle.width = circle.width*2
circle.height = circle.width

Put the values in a transition for a gradual change.
There lots of info on this kind of stuff in the API reference and the docs. [import]uid: 9492 topic_id: 5876 reply_id: 20286[/import]