Print preview magnifier

J

JP

Word 2007 question...

When I click on print preview, the magnifier tool is checked. Is there a
way to change the default so the magnifier is unchecked?

Thanks.
 
H

Herb Tyson [MVP]

The default cannot be changed via option settings. However, you could use a
macro to invoke print preview, and have the macro toggle the magnifier off:

Sub PrintPreviewNoMag()

ActiveDocument.PrintPreview
' ActiveWindow.ActivePane.View.Zoom.Percentage = 75
WordBasic.Magnifier

End Sub

Note that the commented-out line (') optionally could set the zoom
percentage to 75% (or some other size) if you remove the quote mark (I
personally find the default zoom to be rather useless for my purposes).

HTH...

--

Herb Tyson MS MVP
Author of the Word 2007 Bible
Blog: http://word2007bible.herbtyson.com
Web: http://www.herbtyson.com
 
J

JP

Fantastic -- thank you!

Herb Tyson said:
The default cannot be changed via option settings. However, you could use a
macro to invoke print preview, and have the macro toggle the magnifier off:

Sub PrintPreviewNoMag()

ActiveDocument.PrintPreview
' ActiveWindow.ActivePane.View.Zoom.Percentage = 75
WordBasic.Magnifier

End Sub

Note that the commented-out line (') optionally could set the zoom
percentage to 75% (or some other size) if you remove the quote mark (I
personally find the default zoom to be rather useless for my purposes).

HTH...

--

Herb Tyson MS MVP
Author of the Word 2007 Bible
Blog: http://word2007bible.herbtyson.com
Web: http://www.herbtyson.com




.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top