RE: [flexcoders] Popup window close button fails

2009-05-06 Thread Tracy Spratt
It is not automatic. The button just dispatches the close event. You need to define a close event handler. And in that do PopUpmanager.removePopUp(this). Though more often, I just dispatch a custom named event, and have in a listener/handler in the component that created the popup, and in

Re: [flexcoders] Popup window close button fails

2009-05-06 Thread Tom McNeer
Hi Tracy, Thanks for the explanation. I knew the close event was fired. But I guess I thought the default close event also called the PopUpManager. Maybe it's me, but I think the Lang Ref could be a little clearer about this. Thanks for straightening me out, anyway. -- Thanks, Tom Tom