|
ActionScript Reference PHPObject Class
PHPObject.execute()
PHPObject.execute()
Entry Owner: Sunny Hong, Started: October 19, 2003
Note
This pertains to the PHPObject class, available if the PHPObject extension is installed (available from Macromedia Exchange).
Description
Method. This is called at some point after a delayExecute() method has been called. Calling this method sends out the remote methods kept in the queue to the server. The methods would be processed on the server in the order they were called. It also cancels the delayExecute() function, meaning that unless you call delayExecute() again, subsequent remote methods will be executed as normal - immediately and not kept in the queue.
Example
--------------------------------------------------------------------------------
// Actionscript
myFoo.delayExecute();
myFoo.doRemoteMethod1();
myFoo.doRemoteMethod2();
myFoo.execute();
--------------------------------------------------------------------------------
|