RE: [flexcoders] how to wait for more than one httpserivice/remoteobject result to finish?

2009-08-21 Thread Scott
yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Tim Rowe Sent: Thursday, August 20, 2009 6:10 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] how to wait for more than one httpserivice/remoteobject result to finish? You don't really get much in the way of thread co

RE: [flexcoders] how to wait for more than one httpserivice/remoteobject result to finish?

2009-08-21 Thread Scott
ups.com Subject: [flexcoders] how to wait for more than one httpserivice/remoteobject result to finish? Hi my application needs to wait until two (or more) resultHandlers to get their results and use them together. for example, at application creationComplete, it calles myRO.getList1() an

RE: [flexcoders] how to wait for more than one httpserivice/remoteobject result to finish?

2009-08-20 Thread Tracy Spratt
--Tim _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Wesley Acheson Sent: Friday, 21 August 2009 5:20 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] how to wait for more than one httpserivice/remoteobject result to finish? privat

RE: [flexcoders] how to wait for more than one httpserivice/remoteobject result to finish?

2009-08-20 Thread Tim Rowe
--Tim From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Wesley Acheson Sent: Friday, 21 August 2009 5:20 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] how to wait for more than one httpserivice/remoteobject result to finish? privat

Re: [flexcoders] how to wait for more than one httpserivice/remoteobject result to finish?

2009-08-20 Thread Wesley Acheson
private var list1Result:ResultEvent; private var list2Result:ResultEvent; private function handleList1Result(event:ResultEvent):void { list1Result = event; if(list2Result) { handleResults(list1Result, list2Result); } } private function handleList2Result(event:ResultEvent):void { lis

[flexcoders] how to wait for more than one httpserivice/remoteobject result to finish?

2009-08-20 Thread coder3
Hi my application needs to wait until two (or more) resultHandlers to get their results and use them together. for example, at application creationComplete, it calles myRO.getList1() and myRO.getList2() what can i do to make sure i get both results before i do anything el