Thanks for any help...
Am I missing something blindingly obvious?
Please elaborate on the batch file suggestion...
Perhaps this is a Distiller issue. I cannot find any options in Distiller that would set this, but perhaps there's a super-secret way of setting those defaults for the documents you create.
If not, then perhaps I need to go to the Request Features area...
1. Name process
2. Click on "Select Commands"
3. Under "Document" select "Open Options"
4. Click the "Add" button
5. Highlight the added "Open Options"
6. Click the "Edit" button
7. Select the open options you want to be set to a given value
8. Click "OK" to accept changes
9. Click "OK" to accept command
10. Select your "Run" and "Output" options
11. Run the batch process
There is a way to achieve this using PDFmarks. The PDFmaker reference can be downloaded from here: <http://www.adobe.com/devnet/acrobat/pdfs/pdfmarkReference_v9.pdf>
Now before I explain, the following method can only be used in a Print to PDF workflow. In other words below method will not wotk when using PDFmaker 9 and Word 2007 as it doesn't use the print to pdf method. (Printing from Word 2007 to the Adobe PDF printer will work)
A. Edit the epilogue.ps file
1: Browse to C:\Documents and Settings\[USERNAME]\Application Data\Adobe\Adobe PDF\Distiller\Data
2: Ensure the Administrator (or the user in question at least) has both read and write access to this folder and it's contents
3: Open the Epilogue.ps in Notepad or other text editor
4: Find the line that says: % Insert your custom PostScript here...
5: Below that line paste the following:
[ /PageMode /UseOutlines
/Page 1
/View [/Fit ]
/DOCVIEW pdfmark
Note: The above lines will open the document displaying bookmarks. if you just want the document on it's own use 'UseNone' instead of 'UseOutlines'. For other values check page 30 of the PDFmark reference.
/Page 1 opens the PDF on page 1
/View [/Fit ] opens the PDF Fit to page
For other values check page 48 of the PDFMark reference.
6: Save the epilogue. (if you get an access error, ensure the user has read write access to this file)
B. Creating a custom joboption in Distiller to use the epilogue file
Distiller's default settings will not use the prologue and epilogue.ps files, so you need to edit an existing job option file:
1: Launch Distiller and select any joboption you want to change
2: Go to settings>edit Adobe PDF settings
3: Select the Advanced option and tick 'Use Prologue.ps and Epilogue.ps
4: Save the edited job option.
C. Ensure the used PDF creation method is using the newly edited joboption:
Manually Distilling PS files: Select the edited joboption in distiller's dialog box
Printing directly to the Adobe PDF printer:
1: Go to Start>Printers and faxes and right-click the Adobe PDF printer and select 'Printing Preferences
2: Change the default settings to the newly edited joboption
PDFMaker (note this will not work for the PDFMaker 9 and Word 2007 combination, for PDFmaker 8 and Word 2007 ensure 'Quick and simple option is de-selected in the PDFMaker preferences)
1: Click on the Acrobat menu and select 'Create Adobe PDF preferences'
2: Change the conversion settings to the newly edited joboption.
Frame users should know what to do i assume.
this.pane = "bookmarks"; // bookmark
this.pane = "layers"; // layers
this.pane = "thumbnails"; // thumbnails
This code can also be added by JavaScirpt in a batch process:
// script to add a dcoument level script called "SetPaneView" to open the bookmarks pane:
this.addScript("SetPaneView", "this.pane = \"bookmarks\";");