![]() |
#2
|
||||
|
||||
![]()
You would need macros to do this via buttons since they aren't built-in. You can do a series of macros to toggle the colours. There is a finite number of highlight colours but if you know the available constant names for the colours then you just build another macro for each one.
Code:
Sub HL1() SetHiLite wdYellow End Sub Sub HL2() SetHiLite wdBrightGreen End Sub Function SetHiLite(iCol As Long) If Selection.Range.HighlightColorIndex = iCol Then Selection.Range.HighlightColorIndex = wdNoHighlight Else Selection.Range.HighlightColorIndex = iCol End If End Function
__________________
Andrew Lockton Chrysalis Design, Melbourne Australia |
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
How to create a "Font color" button and a "Highlight text" button in the Quick Launch toolbar ? | gloub | Word | 12 | 02-19-2019 03:19 PM |
Can I edit macro buttons on the quick access toolbar in excel? | appo | Excel Programming | 2 | 11-13-2018 10:30 AM |
Is it possible to use two of the same toolbar buttons in Word 2007? | WaltR | Word | 3 | 08-04-2012 03:30 PM |
Need to put two highlight buttons on toolbar in different colors | davidmrt | Word | 6 | 12-11-2011 05:54 AM |
![]() |
Brandi | Mail Merge | 18 | 06-15-2010 02:10 PM |