View Single Post
 
Old 04-29-2009, 11:34 AM
Bird_FAT's Avatar
Bird_FAT Bird_FAT is offline Office 2007
Expert
 
Join Date: Apr 2009
Location: South East
Posts: 271
Bird_FAT is on a distinguished road
Default Not nice, but workable!

The only way I can see that you can do it is to find out the RGB values of the colours that you liked in 2003, then apply them to the text when you want it!

To simplify this, you could create a macro for each colour, and either have them as buttons, or key combos!

Easiest way to do that would be:

  • On the View tab - choose Macros > Record Macro...
  • Choose any name and assign it to the keyboard
  • Stop the macro immediately
  • On the View tab - choose Macros > View Macros
  • choose your macro and choose to Edit
  • Copy and paste the simple macro code below (not forgetting to change the RGB values)
You could then create as many different macros as you want colours! Then all you need to do is select the text and run the macro!!

Code:
' The line of code below is all you need:

    Selection.Font.Color = rgb(0, 0, 0)

' You just have to place it between the Sub and End Sub lines
If you have the RGB set for each colour you want to create text with, you should then be sorted
Reply With Quote