Making Bookmarks more visible

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi all,

Is there any way to make a bookmark more visible on the screen when viewing
the doc, and to have the bookmark 'highlight text' or something like this, if
the doc/page is printed out.

The small [ ] around the text is not quite as visible as I would have hoped.

TIA
 
Hi Wendy,
If you know a bit about macros:
you may try the following:
Dim oBkm As Bookmark
For Each oBkm In ActiveDocument.Bookmarks
oBkm.Range.HighlightColorIndex = wdYellow
Next
If you delete or move the bookmark, however,
the text stays highlighted.
 
Back
Top