/ Published in: Other
                    
                                        
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).
                
                            
                                Expand |
                                Embed | Plain Text
                            
                        
                        Copy this code and paste it in your HTML
Sub ScrollDown()
'
' ScrollDown Macro
'
'
ActiveDocument.ActiveWindow.SmallScroll Down:=1
End Sub
Sub ScrollUp()
'
' ScrollUp Macro
'
'
ActiveDocument.ActiveWindow.SmallScroll Up:=1
End Sub
URL: http://www.thefreewindows.com/2287/scroll-a-microsoft-word-document-without-moving-the-cursor/
Comments
 Subscribe to comments
                    Subscribe to comments
                
                