[flexcoders] Re: Position popup relative to component.

2007-09-28 Thread chuyler1
Also, Look into using localToGlobal() on an object to translate coordinates relative to a Display Object to coordinates relative to 0,0 in the browser window. Example: var point:Point = new Point(); point.y += 25; // move my pop-up down 25 pixels point = myButton.localToGlobal(point); // displa

[flexcoders] Re: Position popup relative to component. -- [SOLVED]

2007-09-28 Thread generalxxaxx
Thanks for the clues. That put me in the correct direction to solve it. Claude --- In flexcoders@yahoogroups.com, "chuyler1" <[EMAIL PROTECTED]> wrote: > > Also, > > Look into using localToGlobal() on an object to translate coordinates > relative to a Display Object to coordinates relative to 0,0