View Single Post
  #2   Report Post  
Posted to microsoft.public.word.newusers
Jay Freedman Jay Freedman is offline
external usenet poster
 
Posts: 9,854
Default Removing button description

Sevilho wrote:
If you add button Document Map on Quick Access Toolbar, description
text occupy much space.

Is there option to view button without text description?


You can't change the display of the built-in Document Map command on the
toolbar. What you can do is to create a macro that does the same thing, and
add a button to the Quick Access Toolbar for the macro so you can choose an
icon for it.

The macro is simple (see http://www.gmayor.com/installing_macro.htm if
needed):

Sub ToggleDocumentMap()
ActiveWindow.DocumentMap = Not ActiveWindow.DocumentMap
End Sub

Paste it into a module in Normal.dotm.

In the Customize dialog, select the Macros category and click on the macro's
name -- it will look something like Normal.Module1.ToggleDocumentMap -- and
click the Add button. Then select the macro's name in the right-hand list
and click the Modify button. There you can choose an icon and edit the name
to determine what will appear in the tooltip when you hover over the button.

--
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.