Power Point Presentation Help Please

Soldato
Joined
5 May 2004
Posts
4,403
Location
Northern Ireland
Hello - if this is in the wrong section I'm sorry. Could a kind don move it if required thanks.

I would like to know is there a way to record a macro in powerpoint that changes the font. I have tried but it does seem to work. Was just looking for any other ways. Thanks

Blackvault
 
The short answer is yes - just use the record button.

You can tidy up the following a bit - that should work

Code:
With ActiveWindow.Selection
    .SlideRange.Shapes("Rectangle 2").Select
    .ShapeRange.TextFrame.TextRange.Select
    .ShapeRange.TextFrame.TextRange.Characters(Start:=1, Length:=5).Select
    .TextRange.Font.Name = "Verdana"
End With
 
Back
Top Bottom