home *** CD-ROM | disk | FTP | other *** search
- !!script
- // Copyright ⌐ 1997-1998 - Modelworks Software
-
- /**
- @Tool: countCharacters~counts characters in a file
- not including carriage returns and new lines
- @EndTool:
- @Summary: countCharacters~counts characters in a file
- */
-
- var gOutput = getOutput();
-
- function DoCommand()
- {
- gOutput.clear();
- var charCount = 0;
-
- var editor = getActiveEditor();
- if (editor)
- {
- var lineCount = editor.getLineCount();
-
- for (var i = 0; i < lineCount; i++)
- {
- charCount += editor.getLineLength(i);
- }
- }
-
- gOutput.writeLine("Total char count: " + charCount);
- }
- !!/script
-
-