I have a movie clip called “myMC”. I set its x value as such:
[AS]
var myMC:MovieClip = new MovieClip();
addChild(myMC);
myMC.x = 100;
myMC.y = 243;
[/AS]
I then Have another movie clip that is inside “myMC”:
[AS]
var myShape:MovieClip = new MovieClip();
myMC.addChild(myShape);
myShape.x = 56;
myShape.y = 53;
[/AS]
I know I could proboly acheive this with a math equation but is there a function that can get the exact global position of “myShape”? So that I can position another movieclip or sprite around that movieclip?