[flexcoders] Popup window close button fails

2009-05-06 Thread Tom McNeer
In the application I'm creating, I have a few popups. Each has the showCloseWindow attribute set to true, and sure enough, the button is there. But it won't close the window when clicked. ? -- Thanks, Tom Tom McNeer MediumCool http://www.mediumcool.com 1735 Johnson Road NE Atlanta, GA

RE: [flexcoders] Popup window close button fails

2009-05-06 Thread Tracy Spratt
] On Behalf Of Tom McNeer Sent: Wednesday, May 06, 2009 5:43 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Popup window close button fails In the application I'm creating, I have a few popups. Each has the showCloseWindow attribute set to true, and sure enough, the button

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

RE: [flexcoders] Re: Anything other than a JS alert can delay a window close?

2008-12-15 Thread Seth Hodgson
@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of valdhor Sent: Wednesday, December 10, 2008 5:58 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Anything other than a JS alert can delay a window close? Another idea... How about setting up a timer in Flex to poll the server

RE: [flexcoders] Re: Anything other than a JS alert can delay a window close?

2008-12-15 Thread Maciek Sakrejda
alert can delay a window close? Date: Mon, 15 Dec 2008 11:40:24 -0800 HTTP session timeout at the server is the only sure-fire way to detect a client has left. Catching Javascript events at the client and attempting to notify the server may shortcut this process _when_ it works - but it provides

[flexcoders] Re: Anything other than a JS alert can delay a window close?

2008-12-15 Thread ozziegt
We have had success in onBeforeUnload, make the final request, and then in onUnload, create a 500ms loop in JS which gives the networking layer enough time to put the request on the wire before the flash is torn down. This was for a logout call, and it worked pretty well except in Safari (it

[flexcoders] Re: Anything other than a JS alert can delay a window close?

2008-12-10 Thread valdhor
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of wkolcz Sent: Tuesday, December 09, 2008 5:34 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Anything other than a JS alert can delay a window close? Pretty much what I asked

[flexcoders] Anything other than a JS alert can delay a window close?

2008-12-09 Thread wkolcz
Pretty much what I asked in the subject line. I need Flash to submit to a database before the window closes and the flash instance dies. Don't think that a pop up (alert) is an option for our sites. Using JS and ExternalInterface to communicate with flash (AS) to push to a HTTPRequest data

RE: [flexcoders] Anything other than a JS alert can delay a window close?

2008-12-09 Thread Tracy Spratt
other than a JS alert can delay a window close? Pretty much what I asked in the subject line. I need Flash to submit to a database before the window closes and the flash instance dies. Don't think that a pop up (alert) is an option for our sites. Using JS and ExternalInterface to communicate

[flexcoders] Detecting browser window close event?

2007-10-23 Thread msabljic
Hi to everyone, Is it possible to detect in Flex application browser window close event so that an action can be started when user closes Flex application, does anyone know how to do that if it's possible in the first place? The reason why i am asking this is because i have a multiuser Flex

Re: [flexcoders] Detecting browser window close event?

2007-10-23 Thread Scott - FastLane
Software LLC http://www.fastlanesw.com [EMAIL PROTECTED] wrote: Hi to everyone, Is it possible to detect in Flex application browser window close event so that an action can be started when user closes Flex application, does anyone know how to do that if it's possible in the first place

RE: [flexcoders] Detecting browser window close event?

2007-10-23 Thread Mike Krotscheck
, October 23, 2007 1:00 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Detecting browser window close event? Hi to everyone, Is it possible to detect in Flex application browser window close event so that an action can be started when user closes Flex application, does anyone know how to do

Window Close

2005-03-06 Thread gevgelija50
Is there a possibility to create a listener in Flex that will capture the event of a user closing a web browser? In other words, if the user bypasses the logout button, I want to execute the logout process before browser is closed. Thanks, Alex

Re: [flexcoders] Window Close

2005-03-06 Thread Manish Jethani
On Sun, 06 Mar 2005 19:00:26 -, gevgelija50 [EMAIL PROTECTED] wrote: Is there a possibility to create a listener in Flex that will capture the event of a user closing a web browser? You can do it in JavaScript: http://developer.irt.org/script/1230.htm