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

view normal

maryhodges
Registered: Jun 6 2007
Posts: 4

how in the world can you choose the view to normal all the time instead of having to always change it to normal. When sending adobe files some people do not know to change the view to normal to see all the document.
[link=mailto:mary [at] qualitydrugscreens [dot] com]mary [at] qualitydrugscreens [dot] com[/link]

My Product Information:
Acrobat Pro 8, Windows
pddesigner
Registered: Jul 9 2006
Posts: 858
Open your PDF in Acrobat. Click File, Properties, click the Initial View tab and set the file properties to the desired view. You could also place a JavaScript in a button action to let the user select the view size. Here is the script for the mouse up action:

var g = app.response({cQuestion: "What zoom do you want?",
cTitle: "Zoom Percentage"}) //asks the question.
if (g == null); //if Cancel is selected, don't change the zoom.
else
this.zoom = g; //zoom to the percentage entered in the dialog

My favorite quote - "Success is the ability to go from one failure to another with no loss of enthusiasm.