Is there a way to configure Microsoft Word (2003 if possible) to automatically switch to Reading Layout when opening any document? Perhaps select the "Multiple page" option as well?
Yes, I can press Alt+R or press the button to turn it on, but I want to do it automatically.
EDITED:
Thanks to WireGuy I found the answer - add a new VBA method in normal.dot file:
Sub AutoOpen()
Options.AllowReadingMode = True
ActiveWindow.View.ReadingLayout = True
End Sub
