On 4/15/06, mvbaffa <[EMAIL PROTECTED]> wrote:

> The problem is that if I create the Popup with createPopUp with the
> component that has the TitleWindow inside it, like this:
>
>         w = PopUpManager.createPopUp(this, EventsSettings, false);
>
> It is not possible to drag the window. It works OK but it simply
> cannot be dragged.

One of the two:

 1)  EventSetting should extend TitleWindow
 2)  Create a new component that extends TitleWindow and contains EventSettings

Example of #2:

 <!-- foo.mxml -->
 <TitleWindow>
  <EventSettings />
 </TitleWindow>

 w = PopUpManager.createPopUp(this, foo, false);

HTH

Manish


--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 



Reply via email to