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

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