Reply
 
Thread Tools Display Modes
  #1   Report Post  
tvad99
 
Posts: n/a
Default capability to add multiple highlight pens at the same time with d.

When I'm editing documents, I like to highlight different parts with
different colors. For example: red are grammar errors, green are continuity
errors, etc.

It would make my life much easier if I could add multiple highlight pens to
the tool bar that would accept different colors. That way I could just click
on the colored pen that I wish to use. (currently I must click, change
color, click change color)

Thank you.
  #2   Report Post  
Jay Freedman
 
Posts: n/a
Default

tvad99 wrote:
When I'm editing documents, I like to highlight different parts with
different colors. For example: red are grammar errors, green are
continuity errors, etc.

It would make my life much easier if I could add multiple highlight
pens to the tool bar that would accept different colors. That way I
could just click on the colored pen that I wish to use. (currently I
must click, change color, click change color)

Thank you.


First create a series of macros (in Normal.dot or in a template stored in
Word's Startup folder) like these:

Sub HighlightYellow()
Selection.Range.HighlightColorIndex = wdYellow
Options.DefaultHighlightColorIndex = wdYellow
End Sub

Sub HighlightRed()
Selection.Range.HighlightColorIndex = wdRed
Options.DefaultHighlightColorIndex = wdRed
End Sub

Sub HighlightGreen()
Selection.Range.HighlightColorIndex = wdBrightGreen
Options.DefaultHighlightColorIndex = wdBrightGreen
End Sub

See http://www.gmayor.com/installing_macro.htm for instructions for that.
You can make as many as you like -- there are 15 possible colors, plus
wdNoHighlight.

Then make a new toolbar (Tools Customize Toolbars New) and add a
button for each macro, as described at
http://word.mvps.org/FAQs/Customizat...oToToolbar.htm.

Some people have complained that the colors available for highlighting are
too garish, and print so dark that they obscure the text. If you want to
play with a wider palette, you can imitate highlighting with text background
shading, using macros like this one:

Public Sub HighlightPaleGreen()
Selection.Shading.BackgroundPatternColor = wdColorLightGreen
End Sub

--
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://word.mvps.org


Reply
Thread Tools
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
how do i search and replace in multiple word documents Graemis Microsoft Word Help 5 February 24th 10 01:37 PM
Page Numbering in Multiple Section Documents Murray Anderson Microsoft Word Help 1 February 24th 05 06:27 PM
Highlight Changes Marss Microsoft Word Help 12 January 18th 05 03:39 AM
Multiple styles in a single paragraph skibikegolf Microsoft Word Help 1 January 5th 05 09:57 AM
Multiple docs open multiple words Ron Smith New Users 2 December 11th 04 09:21 PM


All times are GMT +1. The time now is 05:53 AM.

Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 Microsoft Office Word Forum - WordBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Word"