Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]()
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. |
#2
![]() |
|||
|
|||
![]()
On Fri, 11 Nov 2005 08:56:03 -0800, UTaimo
wrote: 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/Macros...ngRecorder.htm http://www.word.mvps.org/FAQs/Macros...ordedMacro.htm http://www.word.mvps.org/FAQs/Custom...oToToolbar.htm -- Regards, Jay Freedman Microsoft Word MVP FAQ: http://word.mvps.org |
#3
![]() |
|||
|
|||
![]()
Thank you for your reply. This solves my problem! Thank you very much.
"Jay Freedman" wrote: On Fri, 11 Nov 2005 08:56:03 -0800, UTaimo wrote: 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/Macros...ngRecorder.htm http://www.word.mvps.org/FAQs/Macros...ordedMacro.htm http://www.word.mvps.org/FAQs/Custom...oToToolbar.htm -- Regards, Jay Freedman Microsoft Word MVP FAQ: http://word.mvps.org |
Reply |
Thread Tools | |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
apply a template to existing documents | Page Layout | |||
Does Word have Keyboard Merges like Word Perfect does? | Mailmerge | |||
Word2000 letterhead merge | Mailmerge | |||
Underscore (_) will not always display in RTF files (Word 2002). | Microsoft Word Help | |||
Macros - Keyboard Commands | Microsoft Word Help |