Re: [flexcoders] Re: callback execution environment?

2004-05-06 Thread Steven Webster
Hi Steve, On Thu, 2004-05-06 at 00:02, sbyrne_dorado wrote: This chapter has been very helpful, but it refers to the source code for the examples that it references as being on the companion web site. I've searched a few logical (to me, anyway) places for this example code, but no avail.

callback execution environment?

2004-05-05 Thread sbyrne_dorado
I'm trying to understand the environment that a call back function is executing in. I have called a remote object from ActionScript, via var call = remoteObject.myFunc(); Then I set a result handler function on the returned PendingCall instance: call.onResult = myFunc; But when myFunc gets

RE: [flexcoders] Re: callback execution environment?

2004-05-05 Thread Matt Chotin
To: [EMAIL PROTECTED] Subject: [flexcoders] Re: callback execution environment? --- In flexcoders@yahoogroups.com, Matt Chotin [EMAIL PROTECTED] wrote You're using the onResult function which makes me think you've used Flash Remoting in the past. Nope -- just trying to follow what I see