View Single Post
 
Old 07-30-2018, 08:06 AM
BigJ BigJ is offline Windows 10 Office 2016
Novice
 
Join Date: Jul 2018
Posts: 2
BigJ is on a distinguished road
Default I worked it out...

Sub ChangeBolds()

Dim oSld As Slide
Dim oSh As Shape
Dim x As Long

For Each oSld In ActivePresentation.Slides
For Each oSh In oSld.Shapes

If oSh.HasTextFrame Then

With oSh.TextFrame.TextRange
For x = 1 To .Runs.Count
If .Runs(x).Font.Bold Then
.Runs(x).Font.Name = "Futura Std Book"
End If
Next
End With

End If
Next
Next

End Sub
Reply With Quote