Link in Zwischenablage kopieren
Kopiert
Hello,
Can someone please tell me how to change the navigation pane settings for a specific PDF file.
For example, I have some PDF's that display a navigation pane on the left when I open them. I also have some PDF's that do not display a navigation pane on the left when I open them.
I need to make them all the same way by either removing the navigation pane to some or by adding a navigation to some. Please tell me how to do this.
Please see pictures below. Thank you,
Link in Zwischenablage kopieren
Kopiert
Link in Zwischenablage kopieren
Kopiert
Anyone out there?
Link in Zwischenablage kopieren
Kopiert
Change your document properties and view. Then try saving and securing the PDF.
Link in Zwischenablage kopieren
Kopiert
The first thing I did was go to the properties, intial view section. However, all of my PDF's have exactly the same settings in the properties, intial view section.
Please see below.
Link in Zwischenablage kopieren
Kopiert
Does anyone know how to do this?
Link in Zwischenablage kopieren
Kopiert
Does anyone understand what I am explaining?
Link in Zwischenablage kopieren
Kopiert
I assume you want control over the different collapsed views--one with icons and one without. Is that correct?
It might be handled by a JavaScript but I can't get a PDF to stay without any icons showing up upon re-opening.
Link in Zwischenablage kopieren
Kopiert
Yes, that is corect.
How do I remove the icons from a PDF and save it so they dont appear when I open it?
How do I add the icons from a PDF and save it so they do appear when I open it?
Thank you,
Link in Zwischenablage kopieren
Kopiert
I figured it out. All you need to do is either collape or expand the navigation pane to a PDF and check the box "restore last view setting when reopening documents" in the preferences.
Link in Zwischenablage kopieren
Kopiert
Is there a way to permanently remove the standards icon from the navigation pane, for a specific document? I only have one document the shows the standards icon in the navigation pane when expanded.
Link in Zwischenablage kopieren
Kopiert
Can anyone help me with this?
Link in Zwischenablage kopieren
Kopiert
This place is a joke. I will just cancel my subscription.
Link in Zwischenablage kopieren
Kopiert
Many of the navigation icons appear only if they are relevant. The Standards icon will always appear when the PDF conforms to one of the special standards like PDF/A, PDF/X.
Link in Zwischenablage kopieren
Kopiert
To my knowledge, the navigation panes are not controllable by JavaScript.
Just curious, what about the icons is causing a problem?
Link in Zwischenablage kopieren
Kopiert
this does not work
Link in Zwischenablage kopieren
Kopiert
What does not work?
Link in Zwischenablage kopieren
Kopiert
Keeping sidepane hidden.
Everytime I open Acrobat it is visible.
Link in Zwischenablage kopieren
Kopiert
Yes, the navigation pane can be controlled with JavaScript, although it is not documented, and not all setting are available.
So to do this you need to experiment with the "doc.viewState" property to see what works.
First, open a PDF and setup the navigation pane.
Then run this code in the cosole window:
( you'll find a tutoial here on the console window - https://www.pdfscripting.com/public/Free_Videos.cfm#JSIntro)
this.veiwState.toSource();
If the pages panel is open you'll see something like this:
({ocgStates:null, overViewMode:2, overViewPos:240, overViewX:0, overViewY:0, pageViewLayoutMode:1, pageViewPageNum:0, pageViewX:-161, pageViewY:0, pageViewZoom:3.231109619140625, pageViewZoomType:1})
overViewMode and overViewPos indicate the navigation panel displayed and the width of the panel.
Put this code in a document script to setup the viewState when the document is opened.
this.viewState = {overViewMode:2, overViewPos:240};
All this and more is explained in this article (paid for content)
https://www.pdfscripting.com/members/Document-Navigation-using-View-States.cfm
Link in Zwischenablage kopieren
Kopiert
thanx
Weitere Inspirationen, Events und Ressourcen finden Sie in der neuen Adobe Community
Jetzt ansehen