i have the follow issue :
I have a point which is setted at the border on a component,
with changed transform point to the center of a component in order to match the component rotation.
the important part is when i try to get the point XY after rotation – they remains the same as before rotation.

- how to get XY, after rotation ( changeing point.rotation property to specific degrees of rotaion )
If you just want the point after rotation,
cos(r) * x, sin(r) * yis the easiest way.If you want the point after all transformations, you should be able to use
displayObject.transform.transformPoint(x, y).There’s also
DisplayObject.localToGlobal. In this case you could calllocalToGlobal(x, y)andlocalToGlobal(0, 0)and calculate the difference.See Transform livedocs and DisplayObject livedocs