View Single Post
 
Old 06-13-2014, 12:05 AM
macropod's Avatar
macropod macropod is offline Windows 7 32bit Office 2010 32bit
Administrator
 
Join Date: Dec 2010
Location: Canberra, Australia
Posts: 22,467
macropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond repute
Default

Try:
Code:
Sub Colorize()
With Selection.Range
  Select Case .Font.ColorIndex
    Case wdAuto, wdBlack
      .Font.ColorIndex = wdWhite
      .HighlightColorIndex = wdBlack
    Case wdWhite
      .Font.ColorIndex = wdYellow
      .HighlightColorIndex = wdBlack
    Case wdYellow
      .Font.ColorIndex = wdAuto
      .HighlightColorIndex = wdNoHighlight
  End Select
End With
End Sub
For PC macro installation & usage instructions, see: http://www.gmayor.com/installing_macro.htm.
__________________
Cheers,
Paul Edstein
[Fmr MS MVP - Word]
Reply With Quote