AS3 and NetConnection problems

So, I have a NetConnection established and the SSAS calls a function of its client object. In said function, certain things need to happen based on the caller parameters where the results are only available upon event completion (loading of resources, Tamarin creation, parsing and returning, etc.).

The problem is, the NC client object’s return value cannot be deferred, it must return immediately out of the function for the SSAS to receive it and keep doing whatever it needs to be doing with the provided return value (which is an object full of other objects).

How do I solve this problem?

E.