home *** CD-ROM | disk | FTP | other *** search
- !!Script
- // Copyright ⌐ 1997-2001 - Modelworks Software
-
- /**
- @Tool: toggleUseWin32Help~changes the value of 'Use win32 help'
- @EndTool:
- @Summary: toggleUseWin32Help~changes the value of 'Use win32 help'
- */
-
- function DoCommand()
- {
- var preferences = getMapFile("Preferences");
- var useWin32Help = preferences.lookup("Use win32 help", false);
- preferences.setValue("Use win32 help", !useWin32Help);
-
- }
-
- !!/Script
-