[flexcoders] Re: TitleWindow and Open/Close Effect

2007-12-07 Thread reflexactions
I guess I am hooking the wrong thing Well open as in calling PopUpManager.addPopup and close as in PopUpManager.removePopup. I assumed that when I did addPopup and the window appeared it would fire a show and that when I removed it it would fire the hide before it was destroyed. tks --- In

[flexcoders] Re: TitleWindow and Open/Close Effect

2007-12-07 Thread ben.clinkinbeard
What are you doing to the TitleWindow when you refer to open and close? showEffect/hideEffect correspond to FlexEvent.SHOW and FlexEvent.HIDE, which are triggered by a change in the visible property. So calling someTitleWindow.visible = false should trigger the hideEffect assuming you've assigned

[flexcoders] Re: TitleWindow and Open/Close Effect

2007-12-07 Thread ben.clinkinbeard
addEffect and removeEffect may be what you need but I'm guessing off the top of my head. --- In flexcoders@yahoogroups.com, reflexactions [EMAIL PROTECTED] wrote: I guess I am hooking the wrong thing Well open as in calling PopUpManager.addPopup and close as in PopUpManager.removePopup.