This example scrolls the active window down one screen.
ActiveDocument.ActiveWindow.LargeScroll Down:=1
This example splits the active window and then scrolls up two screens and to the right one screen.
With ActiveDocument.ActiveWindow
.Split = True
.LargeScroll Up:=2, ToRight:=1
End With