[flexcoders] Popup Issue

2005-10-27 Thread digital_eyezed
I have a popup which works ok: function testTable(){var cReports:TitleWindow = TitleWindow(popupWindow (MyTest,false));} The problem is: It's meant to be Modal but it's not, and when I close it (it has a handled close button in the TitleWindow) the underlying main application is frozen. Any

Re: [flexcoders] Popup Issue

2005-10-27 Thread David Harris
>From what I see... you code: function testTable(){var cReports:TitleWindow = TitleWindow(popupWindow (MyTest,false));} The third argument is a flag to indicate if the PopUp is Modal or not. You have false in there, so if you change that to true, it will be Modal EG: function