I have a script that allows me to view the Character Count limit, and then it counts down. I would prefer to display a Word Count instead because the majority of people don't count characters. I've attached a link to the pdf I've created for that.
http://webfro.gs/south/Adobe/Character%20Countdown.pdf
In Properties > Actions > On Focus > Run a Javascript - I have the following script running...
var maxlim=event.target.charLimit;
if (event.target.value.length==0)
this.getField("cntdwn").value=maxlim;
Then, in Properties > Format > Custom Keystroke Script - I am running this Countdown script
var value = custmMergeChange(event);
var L = value.length;
this.getField("cntdwn").value=(maxlim-L);
Is there something out there that can display a Word Count and when the word count is reached (counting up) or it reaches zero (counting down), can the ability to type any further be stopped?
How's this possible?