Return to Snippet

Revision: 17152
at August 25, 2009 11:34 by pckujawa


Initial Code
Sub ScrollDown()
'
' ScrollDown Macro
'
'
ActiveDocument.ActiveWindow.SmallScroll Down:=1
End Sub
Sub ScrollUp()
'
' ScrollUp Macro
'
'
ActiveDocument.ActiveWindow.SmallScroll Up:=1
End Sub

Initial URL
http://www.thefreewindows.com/2287/scroll-a-microsoft-word-document-without-moving-the-cursor/

Initial Description
I've wanted to be able to do this for a long time, but could never figure out how. You need to create two macros and (http://answers.microsoft.com/en-us/office/forum/officeversion_other-word/how-can-i-assign-or-change-keyboard-shortcuts-to/5ea9ac54-494d-4a09-9104-91ea41f7d305)[assign them to keyboard shortcuts] (I use Ctrl+Up/Down, since they are standard in IDEs).

Initial Title
Scroll up or down one line at a time in MS Word (using keyboard)

Initial Tags


Initial Language
Other