Re: [flexcoders] Blocking

2010-06-03 Thread Oleg Sivokon
You can load it with JavaScript synchronously, ExternalInterface is also synchronous, however, it is possible that you will run out of time and the application will crash because of that. Because, even though you can try-catch timeout error, if the function that produced the error won't exit, you

Re: [flexcoders] Blocking

2010-06-03 Thread Richard Rodseth
I was able to make an adjustment to the surrounding code, so this is no longer an issue for me, but thanks for the information. On Thu, Jun 3, 2010 at 3:55 AM, Oleg Sivokon olegsivo...@gmail.com wrote: You can load it with JavaScript synchronously, ExternalInterface is also synchronous,

[flexcoders] Blocking

2010-06-02 Thread Richard Rodseth
I know this sounds terrible, but is there a way to wrap an asynchronous call in one which blocks while waiting for it to complete? I'm loading XML via URLLoader to configure a mock API implementation and am limited in what I can change in the main application architecture. So I need a way to

Re: [flexcoders] Blocking

2010-06-02 Thread Alex Harui
I don’t know of any way to block for async network calls. On 6/2/10 6:59 PM, Richard Rodseth rrods...@gmail.com wrote: I know this sounds terrible, but is there a way to wrap an asynchronous call in one which blocks while waiting for it to complete? I'm loading XML via URLLoader to

Re: [flexcoders] Blocking

2010-06-02 Thread Richard Rodseth
Thanks. I guess it makes sense now that I think about it. On Wed, Jun 2, 2010 at 9:05 PM, Alex Harui aha...@adobe.com wrote: I don’t know of any way to block for async network calls. On 6/2/10 6:59 PM, Richard Rodseth rrods...@gmail.com wrote: I know this sounds terrible, but is

[flexcoders] Blocking Dialog In Felx

2008-06-11 Thread Parkash
Hi All I have created a custom yes/no dialog using TileWindow and I am displaying it with the help of Popup Manager. Note this is Modal Dialog. Now I am deleting ten records all at once so this dialog opens up and ask for user confirmation r you sure you delete this record, but the problem

Re: [flexcoders] Blocking Dialog In Felx

2008-06-11 Thread David Pariente
original De: Parkash [EMAIL PROTECTED] Para: flexcoders@yahoogroups.com Enviado: miércoles, 11 de junio, 2008 9:05:14 Asunto: [flexcoders] Blocking Dialog In Felx Hi All I have created a custom yes/no dialog using TileWindow and I am displaying it with the help of Popup Manager. Note

Re: [flexcoders] Blocking Dialog In Felx

2008-06-11 Thread Tom Chiverton
On Wednesday 11 Jun 2008, Parkash wrote: this dialog in non-blocking dialog and displays all ten confirmation message at the same time, please tell me how to create blocking Dialog in flex . If you were subclassing Alert, you could hook into the yes/no button clicks, and fire the ten deletes

Re: [flexcoders] Blocking Dialog In Felx

2008-06-11 Thread Paul Andrews
- From: Parkash To: flexcoders@yahoogroups.com Sent: Wednesday, June 11, 2008 8:05 AM Subject: [flexcoders] Blocking Dialog In Felx Hi All I have created a custom yes/no dialog using TileWindow and I am displaying it with the help of Popup Manager. Note this is Modal Dialog. Now