Guest User

Untitled

a guest
Jul 23rd, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. private function executeNextMethod(event:Event=null):void {
  2. if (event) {
  3. stopListeningForEvent(event);
  4. }
  5.  
  6. var async:Asynchronous = invokeMethod();
  7.  
  8. if (hasNoMoreMethods()) {
  9. done();
  10. return;
  11. }
  12.  
  13. waitThenExecuteNext(async);
  14. }
Add Comment
Please, Sign In to add comment