These forums are now Read Only. If you have an Acrobat question, ask questions and get help from one of our experts.

Where do batch sequences live

acobatug
Registered: Aug 5 2006
Posts: 12
Answered

Where do batch sequences live, can I copy them from one station to another or do I need to redo them for at every single station?

Mac, OS X 10.6

Thanks,
Richard

My Product Information:
Acrobat Pro 9.3.1, Macintosh
gkaiseril
Expert
Registered: Feb 23 2006
Posts: 4307
Open the JavaScript console, [url=http://www.acrobatusers.com/tutorials/2006/javascript_console]The Acrobat JavaScript Console (Your best friend for developing Acrobat JavaScript)] by Thom Parker

Run the following command in the console for the application sequences:
app.getPath('app', 'sequences');
Run the following command in the console for the user sequences:
app.getPath('user', 'sequences');
The batch files will have a file type of 'sequ'.

George Kaiser

acobatug
Registered: Aug 5 2006
Posts: 12
That was easy!

Thank you