home *** CD-ROM | disk | FTP | other *** search
- !!script
- // Copyright ⌐ 1997-1998 - Modelworks Software
- // @Modified build 239 cm19981208 - added document comment
-
- /**
- @Notify: onRestoreSettings~restores default settings.
- @EndTool:
- @Summary: onRestoreSettings~restores default settings
- */
-
- var gOptions = getMapFile("JDKToolsStandardOptions");
- var gOutput = getOutput();
-
- function OnNotify()
- {
- if (isKeyDown("Control")) // Escape mechanism - useful in editing and debugging this script
- {
- return;
- }
-
- var logEvents = getGlobal("LogEvents", false);
- if (logEvents)
- {
- gOutput.writeLine("Running onRestoreSettings");
- }
- }
-
- !!/script
-
-