home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 67 / IOPROG_67A.ISO / soft / Tools / mwsppv4.exe / GETLINE.SCRIPT < prev    next >
Encoding:
Text File  |  1998-01-06  |  343 b   |  21 lines

  1. !!Script
  2. // Copyright ⌐ 1997-1998 - Modelworks Software
  3.  
  4. function DoCommand()
  5. {
  6.     var editor = getActiveEditor();
  7.     if (editor)
  8.     {
  9.       var range = editor.getSelection();
  10.       range.startCharIndex = 0;
  11.       range.endCharIndex = 32000;
  12.       var data = editor.copy(range);
  13.       if (data)
  14.       {
  15.         alert("" + data);
  16.       }
  17.     }
  18. }
  19.  
  20. !!/Script
  21.