home *** CD-ROM | disk | FTP | other *** search
- !!Script
- // Copyright ⌐ 1997-1998 - Modelworks Software
-
- /**
- @Tool: getPathInfo~displays the full path for the current editor.
- @EndTool:
- @Summary: getPathInfo~displays the full path for the current editor
- */
-
- var editor = getActiveEditor();
- if (editor)
- {
- var file = editor.getFile();
- alert ("The path of the current editor is:\n" + file.path);
- }
-
- !!/Script
-