[flexcoders] Re: Repositioning pop up window

2006-07-27 Thread Robi Ray
Thanks Tim. I, somehow, got the soln to this: var l:IFlexDisplayObject = PopUpManager.createPopUp(this, , true); l.x = some value; l.y = some value; Regards, Robi. -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-

[flexcoders] Re: Repositioning pop up window

2006-07-27 Thread Tim Hoff
Once again, Jesta in da house. :) --- In flexcoders@yahoogroups.com, "JesterXL" <[EMAIL PROTECTED]> wrote: > > popup = PopUpManager.createPopUp(this, YourComp, true); > popup.move( 100, 200); > > - Original Message - > From: "Robs" <[EMAIL PROTECTED]> > To: > Sent: Thursday, July 27, 20

[flexcoders] Re: Repositioning pop up window

2006-07-27 Thread Tim Hoff
Hi Robi, It doesn't look like you can explicetly set the x,y coordinates, but you can specify the parennt container of the PopUp. Containers can be positioned with x,y in absolute positioning mode. You also have the centerPopUp method available. -TH --- In flexcoders@yahoogroups.com, "Robs"