BUT>>>
If you can use vba this code will instantly change all titles to upper case!
Sub TitlesToUpper()
Dim oSld As Slide
Dim oShp As Shape
For Each oSld In ActivePresentation.Slides
For Each oShp In oSld.Shapes
If oShp.Type = msoPlaceholder Then
If oShp.HasTextFrame Then
If oShp.TextFrame.HasText Then
If oShp.PlaceholderFormat.Type = ppPlaceholderCenterTitle Or _
oShp.PlaceholderFormat.Type = ppPlaceholderTitle Then
oShp.TextFrame.TextRange.Text = UCase(oShp.TextFrame.TextRange.Text)
End If
End If
End If
End If
Next oShp
Next oSld
End Sub
--
-----
Did that answer the question / help?
_____________________________
John Wilson
Microsoft Certified Office Specialist
http://www.technologytrish.co.uk/ppttipshome.html