Skip to main content
Inspiring
January 6, 2022
Question

Acrobat Pro Navigation Pane Settings

  • January 6, 2022
  • 2 replies
  • 6953 views

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,

This topic has been closed for replies.

2 replies

Thom Parker
Community Expert
Community Expert
January 9, 2022

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

 

 

 

Thom Parker - Software Developer at PDFScriptingUse the Acrobat JavaScript Reference early and often
Inspiring
August 12, 2022

thanx

Inspiring
January 6, 2022

Inspiring
January 6, 2022

Anyone out there?

Inspiring
January 8, 2022

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,


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.