home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 67 / IOPROG_67A.ISO / soft / Tools / mwsppv4.exe / REMOVERECENTFILES.SCRIPT < prev    next >
Encoding:
Text File  |  1999-12-22  |  485 b   |  26 lines

  1. !!Script
  2. // Copyright ⌐ 1999 - Modelworks Software
  3.  
  4. /**
  5. @Tool: removeRecentFiles~remove all files
  6. from the Recent Files list.
  7. @EndTool: 
  8. @Summary: removeRecentFiles~remove all files from the Recent Files list
  9. */
  10.  
  11. var gRecentFilesMap = getMapFile("RecentFiles");
  12. var gOutput = getOutput();
  13.  
  14. function DoCommand(commandID, menuIndex)
  15. {
  16.     var fileList = gRecentFilesMap.lookup("RecentFileList", null);
  17.     if (fileList)
  18.     {
  19.         fileList.removeAll();
  20.     }
  21. }
  22.  
  23.  
  24. !!/Script
  25.  
  26.