Dear George, I too would like to do a word count in a PDF document: how do I open the "JavaScript debugging console"? Thanks in advance. Christian Landrein christian [dot] landrein [at] gmail [dot] com
- AcrobatUsers Community Expert - Contact me personally at try6767 [at] gmail [dot] com
Check out my custom-made scripts website: http://try67.blogspot.com
var cnt=0;
for (var p = 0; p < this.numPages; p++)
cnt += getPageNumWords(p);
console.println("There are " + cnt + " words in this doc.");
Highlight the entire script, hold down the "Ctrl" key and press the keypad's enter key and wait.
George Kaiser