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

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