Re: [flexcoders] How Users can Move Popup Windows

2006-04-16 Thread Manish Jethani
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

[flexcoders] How Users can Move Popup Windows

2006-04-14 Thread mvbaffa
I have created, in Flex 2 Beta 2, a non modal Popup, that has a component for data entry inside it. I would like to allow the user to drag the Popup Window around the screen and position it wherever he wants. I tried two approches: 1) The TitleWindow is defined in MXML, inside the component,

Re: [flexcoders] How Users can Move Popup Windows

2006-04-14 Thread jeremy lu
write off my head, try this: w = PopUpManager.createPopUp(Application.application, EventsSettings, false); another way to do this would be extending Panel/TitleWindow then listens to titleBar events to implement drag and drop. jeremy. On 4/15/06, mvbaffa [EMAIL PROTECTED] wrote: I have