Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有人可以给我看 Acrobat 的倒计时脚本吗?(例如,从打开的文档开始 30 分钟,因为我在 PDF 中附加了一个自动关闭脚本)。
提前致谢。
这将为 Acrobat 中的 javascript 设置一个计时器
if(CurrentTimer) app.clearInterval(CurrentTimer); var CurrentTimer = null; var timerHits = 0; function TimeIsUp() { console.println("Timer Hit " + timerHits++); } CurrentTimer = app.setInterval("TimeIsUp();",1000)