No problem Steve you can ask whatever you want. You were close on the Shadow. A good way is to use the Macro recorder to see how Powerpoint interprets certain commands.
Code:
Sub FormatAll()
'Code that looks through each shape and then formats the text to
'a specific type of font.
Dim pst As Presentation, CheckSlide As Slide, CheckShape As Shape
Set pst = ActivePresentation
On Error Resume Next 'Skip over no text shapes and wordart.
For Each CheckSlide In pst.Slides
For Each CheckShape In CheckSlide.Shapes
CheckShape.TextFrame.TextRange.ChangeCase ppCaseTitle
'Times New Roman, 60pt, Bold, font color, Sentence case, no shadow, etc
With CheckShape.TextFrame.TextRange.Font
.Name = "Times New Roman"
.Size = 60
.Bold = msoTrue
.Color = vbBlack
.Shadow = msoFalse
'Add other attributes as needed.
End With
Next CheckShape
Next CheckSlide
On Error GoTo 0
End Sub
Let me know how it works out.
Thanks