Adding duplicate Font Color items to Toolbar

F

falcios

I am constantly changing font colors in Word. I have tried adding a second
font color icon to the toolbar so that I can leave one in red and the other
automatic. When I change one it also changes the other.
I would like to show 2 Font Color icons one in red and one in automatic is
there a way to do this? Any other suggestions?

Thanks for your help.
 
G

Graham Mayor

The short answer is no - the icon displays the last used colour selected
from that particular tool.
You could create a couple of macros and add them to your toolbar eg
Sub FontRed()
Selection.Font.Color = wdColorRed
End Sub
Sub FontAuto()
Selection.Font.Color = wdColorAutomatic
End Sub
http://www.gmayor.com/installing_macro.htm
and with the aid of a screen capture tool like SnagIt, capture the red and
black coloured icons, crop them tight to the graphic and paste into the
toolbar editor (not with Word 2007).

With Word 2007, it is rather more complicated to achieve the same end
http://gregmaxey.mvps.org/Ribbon_Custom_Icons.htm

With either version, you could create a character style and apply that to
your text.

--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 

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

Top