----- Original Message ----- From: <[EMAIL PROTECTED]> To: <[email protected]> Sent: Saturday, June 28, 2008 2:54 PM Subject: [flexcoders] synchronous events in flex
> Hi > Can anyone tell me how to write synchronous events in flex application? There are no synchronous events. > I am calling an Httpservice on focus out event of text field this service > checks name duplication. I want my application to wait for service to > finish and then do some processing Supply a result handler for the httpservice and put your code in that. It will be called asynchronously when the result is ready. Flex doesn't do waiting, except through event handlers. > Thanks in advance Paul

