Adobe Acrobat 允许我们在 pdf 中插入 JS:
if (app.alert("Do you want to save the pdf?", 2, 3) === 4) {
// Save the pdf.
}
我试过: app.save()
, app.execCommand("Save")
,但都失败了。
是否可以使用 Adobe Acrobat JavaScript SDK 在浏览器内触发保存操作?
Adobe Acrobat 允许我们在 pdf 中插入 JS:
if (app.alert("Do you want to save the pdf?", 2, 3) === 4) {
// Save the pdf.
}
我试过: app.save()
, app.execCommand("Save")
,但都失败了。
是否可以使用 Adobe Acrobat JavaScript SDK 在浏览器内触发保存操作?