Does this mean that if some of your bookmarks might lie within Text
Boxes, the only way of being sure of being able to access any bookmark
in the document is to start from within a Text Box?
Also, is it true that no keyboard shortcuts are possible for making or
jumping to bookmarks? I could not find any bookmark commands in List All
Commands.
Thanks for any advice.
David Rollo
what you say is correct. The text box is in the drawing layer and not in the
text layer. Can you use Frames instead of text boxes?
--
Terry Farrell - MSMVP Word
Please visit our Word FAQ site at http://www.mvps.org/word/ created
cooperatively by the group's MVPs.
Please keep replies in the Newsgroup.
This enables everyone to share the problem
and other experts to bring their expertise.
________________________________________________________________
For direct access to all Microsoft newsgroups:
news://msnews.microsoft.com/
Sorry, but emails cannot be acknowledged.
"Qani" <qa...@operamail.com> wrote in message
news:3AE291C0...@operamail.com...
You'll need to use some little macros and assign keyboard shortcuts to
them, like this, which brings up the Insert Bookmark dialog:
Sub EditInsertBookmark()
Application.dialogs(wdDialogInsertBookmark).Show
End Sub
or this,which takes you to the bookmark "Jones"
Sub GotoJones()
Activedocument.Bookmarks("Jones").Select
End Sub
The standard shortcut F5 brings up the Go To dialog, which lets you
jump to bookmarks or anything else.
On Sun, 22 Apr 2001 08:07:41 GMT, Qani <qa...@operamail.com> wrote:
>Also, is it true that no keyboard shortcuts are possible for making or
>jumping to bookmarks? I could not find any bookmark commands in List All
>Commands.
--
With best wishes
John
Please reply to the newsgroup and not by e-mail.
David Rollo
> Also, is it true that no keyboard shortcuts are possible for making or
> jumping to bookmarks?
>
You can use macros to jump to bookmarks any where in a document, even
those in TextBoxes, headers and footers, etc. And macros can be assigned
to keyboard shortcuts.
the basic macro code is:
ActiveDocument.Bookmarks("TheName").Range.Select
Cindy Meister
INTER-Solutions, Switzerland
http://homepage.swissonline.ch/cindymeister
http://www.mvps.org/word
http://go.compuserve.com/MSOfficeForum
This reply is posted in the Newsgroup; please post any follow question
or reply in the newsgroup and not by e-mail :-)