home *** CD-ROM | disk | FTP | other *** search
- !!Script
- // Copyright ⌐ 1997-1998 - Modelworks Software
-
- function DoCommand()
- {
- var editor = getActiveEditor();
- if (editor)
- {
- var range = editor.getSelection();
- range.startCharIndex = 0;
- range.endCharIndex = 32000;
- var data = editor.copy(range);
- if (data)
- {
- alert("" + data);
- }
- }
- }
-
- !!/Script
-