View Single Post
 
Old 08-03-2015, 10:44 AM
JohnWilson JohnWilson is offline Windows 7 64bit Office 2010 32bit
Programmer
 
Join Date: Nov 2008
Location: UK
Posts: 1,913
JohnWilson has a spectacular aura aboutJohnWilson has a spectacular aura about
Default

If you just want to change the font this MIGHT work (use a copy because I didn't test it)

Code:
Sub WordArty()
Dim osld As Slide
Dim oshp As Shape
For Each osld In ActivePresentation.Slides
For Each oshp In osld.Shapes
If oshp.TextFrame2.WordArtFormat >= 0 Then
oshp.TextFrame2.TextRange.Font.Name = "Arial"
End If
Next oshp
Next osld
End Sub
__________________
Microsoft PowerPoint MVP 2007-2023
Free Advanced PowerPoint Tips and Tutorials
Reply With Quote