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 in the
> browser window.
> 
> Example:
> 
> var point:Point = new Point();
> point.y += 25; // move my pop-up down 25 pixels
> point = myButton.localToGlobal(point);
> 
> // display something using point.x and point.y as coordinates
> 
> ~ Chris
> 
> --- In flexcoders@yahoogroups.com, "Tracy Spratt" <tspratt@> wrote:
> >
> > You can set the position of a Popup to whatever you want.  Use the
> > reference returned by createPopup();
> > 
> >  
> > 
> > This example causes the popup to move when the browser is resized.
 The
> > techniques will be the same.
> > 
> >
http://www.cflex.net/showfiledetails.cfm?ChannelID=1&Object=File&objectI
> > D=689
> > 
> >  
> > 
> > Tracy
> > 
> >  
> > 
> > ________________________________
> > 
> > From: flexcoders@yahoogroups.com
[mailto:[EMAIL PROTECTED] On
> > Behalf Of generalxxaxx
> > Sent: Thursday, September 27, 2007 10:16 PM
> > To: flexcoders@yahoogroups.com
> > Subject: [flexcoders] Position popup relative to component.
> > 
> >  
> > 
> > I would like to position my popup datepicker relative to the parent
> > component, not to the mouse position.
> > 
> > Basically have the popup right below my combobox.
> > How does one go about this.
> > 
> > Thanks,
> > Claude
> >
>


Reply via email to