home *** CD-ROM | disk | FTP | other *** search
/ FCE Gold Plus / GOLD.iso / pc / shell.swf / scripts / __Packages / com / handler / InstructionHandler.as < prev    next >
Text File  |  2007-10-16  |  599b  |  18 lines

  1. class com.handler.InstructionHandler
  2. {
  3.    function InstructionHandler()
  4.    {
  5.       this.c_objUICoodInstance = com.controller.UICoordinator.getInstance();
  6.    }
  7.    function startProcess(_strProcessName)
  8.    {
  9.       var _loc2_ = this;
  10.       var _loc1_ = _loc2_.c_objUICoodInstance.getObjectManagerInstance().getObject(_strProcessName);
  11.       _loc2_.c_objUICoodInstance.getScreenFactoryInstance().showScreen(_strProcessName,_loc1_,_loc2_,false);
  12.    }
  13.    function onProcessComplete(_strProcessName, _objData)
  14.    {
  15.       this.c_objUICoodInstance.doAction(_strProcessName,_objData);
  16.    }
  17. }
  18.