Saving as non incremental PDF, with the same name #1851
-
I open a PDF file
I create a new doc
then I insert/add pages to doc2 from doc.
with a reference in its filename to the original PDF file, so I know from which file its content comes from.
Then if I do
it complains because it asks for incremental save, but if I do
or
or
it complains because it's a new doc. How to work around this issue? TIA, Ovidio |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
... and this is the problem! Leave the name of the new document empty - instead save the new file with the desired new name. |
Beta Was this translation helpful? Give feedback.
-
I understand your goal, and it is achievable in the way I described:
|
Beta Was this translation helpful? Give feedback.
I understand your goal, and it is achievable in the way I described:
doc2.save("myPreciousPDF_modified.pdf", <any options>)
. Do not ever touch doc2.name!