Clive Huggan said:
If you want to do the same, quickly, to pre-existing documents, you can also
create a keyboard shortcut and/or a toolbar button to apply "page width" as
your zoom value, or indeed any other value. Post back if you need more
details.
Yep. I did not want to clutter up my reply with arcanity. What I
*really* did was assign a keyboard shortcut to the following macro.
Sub pageWidth()
'
' pageWidth Macro
' Macro recorded 05-01-2004 by Elliott Roper
'
If ActiveWindow.View.SplitSpecial = wdPaneNone Then
ActiveWindow.ActivePane.View.Type = wdPageView
Else
ActiveWindow.View.Type = wdPageView
End If
ActiveWindow.ActivePane.View.Zoom.PageFit = wdPageFitBestFit
End Sub
The result is a window that is page width to the current width of the
window. I then drag the window by the bottom right to get the zoom I'm
currently happy with.
The keyboard shortcut fixes any old document views, and gives me a way
to get my work back to looking half finished if I ever need to stray
into normal view or outline view. It also works round a track changes
misfeature when the page becomes not wide enough to fit the balloons.