
: Batch Export selection of PDF files with no user interaction? I'm using Acrobat Pro DC (macOS) and have set up an Action to Export PDF to DOCX format. I have specified the files I wish
I'm using Acrobat Pro DC (macOS) and have set up an Action to Export PDF to DOCX format.
I have specified the files I wish to include.
However, I have to click the following buttons for each file:
Proceed
Export (defaults)
Recent Folder (same for all files)
Save (defaults)
Is there a way to not have to be present whilst it does these conversions?
More posts by @Candy945
1 Comments
Sorted by latest first Latest Oldest Best
So the answer is: using JavaScript in an Action List.
This is what I ended up with...
JavaScript:
var newfile = this.documentFileName.replace(/.pdf$/i, "") +".docx";
this.saveAs(newfile, "com.adobe.acrobat.docx");
Action List:
Works well. i can press Start and then go away and it will do the whole batch without any human input.
The only annoying thing is that the Acrobat window keeps regaining focus between each file, even if I hide it. The workaround for that is to put Acrobat in a Space of its own.
Terms of Use Create Support ticket Your support tickets Stock Market News! © vmapp.org2025 All Rights reserved.