vote up 1 vote down star
3

How do you get/set the absolute position of a MovieClip in Flash/AS3? And by absolute, I mean its position relative to the stage's origo.

I currently have this setter:

class MyMovieClip extends MovieClip
{
  function set xAbs(var x:Number):void
  {
    this.x = -(this.parent.localToGlobal(new Point()).x) + x;
  } 
}

This seems to work, but I have a feeling it requires that the Stage is left aligned.

However, I don't have a working getter. This doesn't work:

public function get xAbs():Number 
{
  return -(this.parent.localToGlobal(new Point()).x) + this.x; // Doesn't work
}

I'm aiming for a solution that works, and works with all Stage alignments, but it's tricky. I'm using this on a Stage which is relative to the browser's window size.

EDIT: This works for a top-left aligned stage; not sure about others:

public function get AbsX():Number 
{
    return this.localToGlobal(new Point(0, 0)).x;
}   	
public function get AbsY():Number 
{
    return this.localToGlobal(new Point(0, 0)).y;
}   	
public function set AbsX(x:Number):void
{
    this.x = x - this.parent.localToGlobal(new Point(0, 0)).x;
}
public function set AbsY(y:Number):void
{
    this.y = y - this.parent.localToGlobal(new Point(0, 0)).y;
}
flag

75% accept rate

2 Answers

vote up 2 vote down

Two things:

Why the substractions?

var x=this.parent.localToGlobal(new Point(this.x,0)).x;

should give the proper result already. If the parent clip is scaled, your calculation will be off by the scaling factor...

Just a shot in the dark, but you could add a globalToLocal(this.stage) for compensating the alignment issues?

link|flag
What about the setter? – bzlm Dec 4 '08 at 9:44
vote up 1 vote down

Agree with moritzstefaner that you don't need the subtraction stage, however for your setter I actually think you should use globalToLocal, and use localToGlobal for your getter. These will take care of scaling and rotation as well as position.

link|flag
Could you provide an example in code? – bzlm Dec 4 '08 at 9:43

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.