Disabling auto-hiding of vertical scrollbar in Word 2013
There is a hack that stops the scrollbar from disappearing, though I'm not sure whether Microsoft considers it a bug or a feature:
- Go into "VIEW | Read Mode".
- Select "VIEW | Layout | Paper Layout".
- Press Escape to get back into Print Layout, and then the scrollbar shouldn't disappear.
To do this more quickly, get used to typing:
- Alt-W-F
- Alt-W-L-P
- Esc
Jez’s answer is good, but it is rather annoying that you have to do this every time you start Word, so I just made a macro (by recording the keystrokes) and then put the macro on the Home tab of the Ribbon.
Here's the macro:
Sub Fix_Scrollbar()
'
' Fix_Scrollbar Macro
'
'
ActiveWindow.View.ReadingLayout = Not ActiveWindow.View.ReadingLayout
Selection.EscapeKey
If ActiveWindow.View.SplitSpecial = wdPaneNone Then
ActiveWindow.ActivePane.View.Type = wdPrintView
Else
ActiveWindow.View.Type = wdPrintView
End If
End Sub
So now it’s just one click when Word starts ...
It seems there it's no solution for your problem at the moment:
http://answers.microsoft.com/en-us/office/forum/office_2013_release-word/word-vertical-scrollbar-auto-hiding-in-print/2656ff19-ebc6-4f3f-8611-121bfd4072ab?page=1&tm=1434983755116
I disabled the animations (smooth movements) in all the Office 2013 and I have the same auto-hiding of the scrollbar you're refering.