home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 67 / IOPROG_67A.ISO / soft / Tools / mwsppv4.exe / ONRESTORESETTINGS.SCRIPT < prev    next >
Encoding:
Text File  |  1998-12-08  |  621 b   |  30 lines

  1. !!script
  2. // Copyright ⌐ 1997-1998 - Modelworks Software
  3. // @Modified build 239 cm19981208 - added document comment
  4.  
  5. /**
  6. @Notify: onRestoreSettings~restores default settings. 
  7. @EndTool:
  8. @Summary: onRestoreSettings~restores default settings
  9. */
  10.  
  11. var gOptions = getMapFile("JDKToolsStandardOptions");
  12. var gOutput = getOutput();
  13.  
  14. function OnNotify()
  15. {
  16.     if (isKeyDown("Control")) // Escape mechanism - useful in editing and debugging this script
  17.     {
  18.         return;
  19.     }
  20.     
  21.     var logEvents = getGlobal("LogEvents", false);
  22.     if (logEvents)
  23.     {
  24.         gOutput.writeLine("Running onRestoreSettings");
  25.     }
  26. }
  27.  
  28. !!/script
  29.  
  30.