Disable the ability to save a file
I know there isn't a direct way to do this, unless something has changed. We keep our files on our cloud server, we have no problem with people doing a save as, but we don't want them filling out fillable pdfs and then saving them back over the original. I found this script
// On Blur script
if (!event.target.valueAsString) {
app.alert("[Provide field description here] must be complete. Please enter something, anything", 3);
}
And it works, but its giving me the error when I click "save as" as well, it lets me save as, but still kicks back the error, is there a way to write this differently, or another solution to make it so people can't save over my originals?
