Just in case they text is not in placeholders following the master you should
be able to go to Format > slide design
Choose color schemes > Edit color schemes
Change the text color and OK/ apply
--
Or try changing them in the color schemes.
Click Format > Slide Design > Color Schemes > Edit Color Schemes.
Change color for "Text and lines" and "Title text".
--
Shawn Toh (tohlz)
Microsoft Most Valuable Professional (MVP PowerPoint)
Site Updated: April 13, 2006
Added new portfolio http://pptheaven.mvps.org
PowerPoint Heaven - The Power to Animate
If your slides don't follow the master or the color scheme (happens more
often than we like to think), then you have to do it manually. Or use this
code:
That code looks so useful that Ive made a small change to make it easier to
enter colour values!
Sub ChangeFontColor()
Dim R As Integer
Dim G As Integer
Dim B As Integer
R = Val(InputBox("Please input red value"))
G = Val(InputBox("Please input green value"))
B = Val(InputBox("Please input blue value"))
Dim oSld As Slide
Dim oShp As Shape
Dim oShapes As Shapes
For Each oSld In ActivePresentation.Slides
Set oShapes = oSld.Shapes
For Each oShp In oShapes
If oShp.HasTextFrame Then
If oShp.TextFrame.HasText Then
oShp.TextFrame.TextRange.Font.Color.RGB = RGB(R, G, B)
End If
End If
Next oShp
Next oSld
End Sub
--
-----------------------------------------
Did that help?
_____________________________
John Wilson
Microsoft Certified Office Specialist
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.