How do you loop an action in Acrobat 11 Pro
Hi,
I have an action which prints a batch of pdf files. It is important that the files are printed in a particular sequence. This all works fine. However I now want to print multiple copies of the entire batch keeping the same sequence per batch.
I have tried editing the .sequ file by copying the entire batch several times. However, the additional batches are just ignored. It seems the action recognises that it has already printed the file and does not repeat it for duplicates (Scenario A).
I have found a workaround solution to this by creating multiple copies of the same folder with the same files. Now when I edit the .sequ file by copying the entire batch several times but referring to the different folders, there is no problem (Scenario B).
Examples:
Scenario A - This will only print one copy of Doc 1, Doc 2 and Doc 3 in sequence:
<File path="/C/Folder/Doc 1.pdf"/>
<File path="/C/Folder/Doc 2.pdf"/>
<File path="/C/Folder/Doc 3.pdf"/>
<File path="/C/Folder/Doc 1.pdf"/>
<File path="/C/Folder/Doc 2.pdf"/>
<File path="/C/Folder/Doc 3.pdf"/>
<File path="/C/Folder/Doc 1.pdf"/>
<File path="/C/Folder/Doc 2.pdf"/>
<File path="/C/Folder/Doc 3.pdf"/>
</Sources>
<Group label="Untitled">
<Command name="Print" pauseBefore="false" promptUser="false"/>
</Group>
Scenario B - This will print three copies of Doc 1, Doc 2 and Doc 3 in sequence:
<File path="/C/Folder/Doc 1.pdf"/>
<File path="/C/Folder/Doc 2.pdf"/>
<File path="/C/Folder/Doc 3.pdf"/>
<File path="/C/Folder - Copy (1)/Doc 1.pdf"/>
<File path="/C/Folder - Copy (1)/Doc 2.pdf"/>
<File path="/C/Folder - Copy (1)/Doc 3.pdf"/>
<File path="/C/Folder - Copy (2)/Doc 1.pdf"/>
<File path="/C/Folder - Copy (2)/Doc 2.pdf"/>
<File path="/C/Folder - Copy (2)/Doc 3.pdf"/>
</Sources>
<Group label="Untitled">
<Command name="Print" pauseBefore="false" promptUser="false"/>
</Group>
My question is:
Is there an easier way to do Scenario B? Is it possible to just loop Scenario A the number times required? If so, how?
Any help would be appreciated. Thanks!
