View Single Post
 
Old 03-16-2015, 05:22 AM
gmayor's Avatar
gmayor gmayor is offline Windows 7 64bit Office 2010 32bit
Expert
 
Join Date: Aug 2014
Posts: 4,137
gmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud of
Default

You could make the text the display text of a macrobutton field and use that to run a macro to highlight the bookmarked text. Format the field with the Hyperlink character style

{ MACROBUTTON MacroName Highlight the linked text }

Code:
Sub MacroName()
         ActiveDocument.Bookmarks("bmLink").Range.Select
End Sub
Otherwise the normal behaviour for a hyperlink is to go to the linked text. If that works for you, bookmark the text and create a link to that bookmark name. Clicking the link takes you to the start of the bookmarked text.
__________________
Graham Mayor - MS MVP (Word) (2002-2019)
Visit my web site for more programming tips and ready made processes www.gmayor.com
Reply With Quote