Dave,
The macro provided below is one possibility. I have altered the
built-in EditFind command so that, when the Find box is closed, the Word
window scrolls upward (text scrolls downward) by a certain amount,
leaving the Found text approximately in the middle of the window. If
the text is double space, the window will scroll fewer lines than if it
is single space, so that you get approximately the same amount of scroll
whether the text is double or single space.
This will work exactly like the built-in Find command, excerpt that when
you press Escape or Cancel to dismiss the Find box, the scroll will
occur. You could try this out by installing this as a macro. Because
it's name is the same as the built-in command, it replaces it, so that
the keystroke and menu commands for the Find command automatically run
this macro instead.
If you don't know how to install a macro, read this:
http://www.mvps.org/word/FAQs/MacrosVBA/CreateAMacro.htm
Larry
Sub EditFind()
Dialogs(wdDialogEditFind).Show
Application.ScreenUpdating = False
If Selection.ParagraphFormat.LineSpacingRule = wdLineSpaceSingle
Then
ActiveWindow.ActivePane.SmallScroll UP:=10
ElseIf Selection.ParagraphFormat.LineSpacingRule = wdLineSpaceDouble
Then
ActiveWindow.ActivePane.SmallScroll UP:=6
End If
End Sub