I have a php api that is being accessed via Flash. It grabs some content for flash and then does some book keeping. The problem is, the book keeping can take several seconds, and the php api can be accessed in the same manner anywhere from 10-500 times before the Flash App has loaded everything from it.
Sense I'm using flash to access it, AJAX isn't an option. I want to be able to tell the flash URL Loader that the page is done loading before the book keeping, but I still need to do the book keeping. How can this be achieved? Or can it?