home *** CD-ROM | disk | FTP | other *** search
- !!Script
- // Copyright ⌐ 1999 - Modelworks Software
- // @Created build 272 cm19990302
-
- /**
- @Tool: toggleReadOnlyFileStatus~changes the read
- only file status.
- @EndTool:
- @Summary: toggleReadOnlyFileStatus~changes the read only file status
- */
-
- function DoCommand()
- {
- var editor = getActiveEditor();
- if (editor)
- {
- var file = editor.getFile();
- if (file)
- {
- file.readOnly = ! file.readOnly;
- }
- }
- }
-
- !!/Script
-
-