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