Is there a way to choose from more highlighting colors in Word 200

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

Guest

I am needing to highlight text in various Word 2003 documents. I need five
different colors but also need to have five different colors that are light
enough to still be able to read the highlighted text if printed. There are
only 4 "light" colors. Is there any way to choose from more colors? I'd
really like to be able to highlight with orange as my 5th color because it is
light enough and a different color than the other 4.
 
I am needing to highlight text in various Word 2003 documents. I need five
different colors but also need to have five different colors that are light
enough to still be able to read the highlighted text if printed. There are
only 4 "light" colors. Is there any way to choose from more colors? I'd
really like to be able to highlight with orange as my 5th color because it is
light enough and a different color than the other 4.

The highlighting palette is not changeable, unfortunately.

As a workaround, you can use shading instead of highlighting. Select
the text and apply a background shade. In the Format > Borders &
Shading > Shading dialog, make sure the Apply To box is set to "Text"
and choose your color.

To make this easier, you can record a set of macros, one for each
color you want to use, and assign them to toolbar buttons or
right-click menu items. After removing the unnecessary garbage the
recorder throws into its code, one of these macros might look like
this:

Sub OrangeShade()
With Selection.Font
With .Shading
.Texture = wdTextureNone
.ForegroundPatternColor = wdColorAutomatic
.BackgroundPatternColor = wdColorLightOrange
End With
End With
Selection.MoveRight Unit:=wdCharacter, Count:=1
End Sub

Here are references for instructions, if needed:

http://www.word.mvps.org/FAQs/MacrosVBA/UsingRecorder.htm
http://www.word.mvps.org/FAQs/MacrosVBA/ModifyRecordedMacro.htm
http://www.word.mvps.org/FAQs/Customization/AsgnCmdOrMacroToToolbar.htm
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top