Hi tpacheco,
	Quote:
	
	
		| 
			
				Is there any way to make a one-page view "stick" as a default view in Word preferences?
			
		 | 
	
	
 You can go close - the following macro sets a number of display options for any document as it is opened. You can change the various parameters, including addig/deleting where appropriate. To use it, simply add it to Word's 'Normal' template.
	Code:
	Sub AutoOpen()
With ActiveWindow
  'Force Print Preview mode
  If .View.SplitSpecial = wdPaneNone Then
    .ActivePane.View.Type = wdPrintView
  Else
    .View.Type = wdPrintView
  End If
  'Resizes to 125% and 1 page viewed
  With .ActivePane.View.Zoom
    .PageColumns = 1
    .Percentage = 125
  End With
  'Displays the Document Path in the Title Bar
  .Caption = ActiveDocument.FullName
End With
End Sub