Adobe Acrobat allows us to insert JS in the pdf:
if (app.alert("Do you want to save the pdf?", 2, 3) === 4) {
// Save the pdf.
}
I tried: app.save()
, app.execCommand("Save")
, but both failed.
Is it possible that using the Adobe Acrobat JavaScript SDK to trigger the save action inside of the browser?