You can use the Insert | Bookmark dialog box to see the name of the
bookmark at the insertion point. The current bookmark name is
highlighted.
Note, however, that some name will be highlighted even if there is no
bookmark at the insertion point (could be the most recently inserted
bookmark), and this isn't so useful, obviously.
Therefore, you may want to start with displaying bookmarks: On the
Tools menu, click Options. Click the View tab. Check the "Bookmarks"
option and click OK. Now you'll see brackets around bookmarked text:
[This text is bookmarked.] (For bookmarks that doesn't enclose any
text, you'll just see I.)
Alternatively, use a macro such as the following:
If Selection.Bookmarks.Count > 0 Then
MsgBox "Bookmark name: " & Selection.Bookmarks(1).Name
End If
The macro should work with Word's hidden bookmarks, if you add the
following line before the If statement:
ActiveDocument.Bookmarks.ShowHidden = True
For assistance with the macro, see
http://gmayor.com/installing_macro.htm.
--
Stefan Blom
Microsoft Word MVP
in message
Hello,
I have a lot of bookmarks in a document and I want to be able to select one
somehow and see what the name is. Is there some way to do that? Thanks.