Copy link to clipboard
Copied
Hi,
Does anyone know if it's possible to check within an Adobe plug-in if the content of the selected document has changed? (e.g. Via Adobe Acrobat).
Essentially I want to be able to say:
-if document content changed, save using PDDocSaveWithParams (as it needs to save to a different folder etc..)
-else save using AVDocDoSave
*This is to get around an issue with using PDDocSaveWithParams with protected/secured documents.
Each PDDoc has a “dirty” flag, set on changes, cleared on save, and there is a method to inspect it. A plugin can also clear the flag.
Copy link to clipboard
Copied
Each PDDoc has a “dirty” flag, set on changes, cleared on save, and there is a method to inspect it. A plugin can also clear the flag.
Copy link to clipboard
Copied
That's great. Thank you.