我有一个脚本可以让我查看字符数限制,然后它会倒计时。我更喜欢显示字数,因为大多数人不计算字符。我已经附上了我为此创建的 pdf 的链接。
http://webfro.gs/south/Adobe/Character%20Countdown.pdf
在Properties > Actions > On Focus > Run a Javascript - 我有以下脚本正在运行...
var maxlim=event.target.charLimit;
if (event.target.value.length==0)
this.getField("cntdwn").value=maxlim;
然后,在Properties > Format > Custom Keystroke Script - 我正在运行这个倒计时脚本
var value = custmMergeChange(event);
var L = value.length;
this.getField("cntdwn").value=(maxlim-L);
有没有什么东西可以显示字数,当字数达到(向上计数)或达到零(向下计数)时,是否可以停止进一步打字?
这怎么可能?