As Suzanne says, you cannot set this is a default in the drop down box, but
you can override the settings for existing documents and new documents to
display all at 125% using a pair of macros. http://www.gmayor.com/installing_macro.htm
Sub AutoNew()
With ActiveWindow.View
.Type = wdPrintView
.Zoom.Percentage = 125
End With
End Sub
Sub AutoOpen()
ActiveWindow.Caption = ActiveDocument.FullName
With ActiveWindow.View
.Type = wdPrintView
.Zoom.Percentage = 125
End With
End Sub
--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP