In flex, I am using VBox & HBox to stack components. When I try to get x,y coordinate of a component, I always get 0. If I specify cooridnate like mx:VBox x="120", then I get the value.
How can I get the coordinate without explicitly stating it.
|
In flex, I am using VBox & HBox to stack components. When I try to get x,y coordinate of a component, I always get 0. If I specify cooridnate like mx:VBox x="120", then I get the value. How can I get the coordinate without explicitly stating it.
| |||||||||||
feedback
|
|
The X and Y values of a component are always relative to the component's parent. The thing to remember about If however you call Here's a quick app to demonstrate:
| |||||
feedback
|
|
You can translate the coordinates relatively to the stage. Check out the code below:
The point is to use Please notice, that the coordinates won't be processed until | |||
|
feedback
|