home *** CD-ROM | disk | FTP | other *** search
- !!Script
- // Copyright ⌐ 1999 - Modelworks Software
-
- /**
- @Tool: removeRecentFiles~remove all files
- from the Recent Files list.
- @EndTool:
- @Summary: removeRecentFiles~remove all files from the Recent Files list
- */
-
- var gRecentFilesMap = getMapFile("RecentFiles");
- var gOutput = getOutput();
-
- function DoCommand(commandID, menuIndex)
- {
- var fileList = gRecentFilesMap.lookup("RecentFileList", null);
- if (fileList)
- {
- fileList.removeAll();
- }
- }
-
-
- !!/Script
-
-