Changing Format of Comment Boxes in PowerPoint

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there a way to create a new default for comment boxes in PowerPoint? I
have only be able to revise formatting on a slide-by-slide basis. That
doesn't seem very efficient, so I'm assuming there is some method to do it
globally.

Thanks,
 
Is there a way to create a new default for comment boxes in PowerPoint? I
have only be able to revise formatting on a slide-by-slide basis. That
doesn't seem very efficient, so I'm assuming there is some method to do it
globally.

I'm assuming you use PPT 2000 or earlier; as I recall you can't format comments
in later versions at all.

If that's the case, you can run this little macro:

Sub FormatComments()

Dim oSl as Slide
Dim oSh as Shape

For Each oSl in ActivePresentation.Slides
For Each oSh in oSl.Shapes
If oSh.Type = msoComment Then
' Change the RGB values to suit; this will produce a light gray:
oSh.Fill.ForeColor.RGB = RGB(200,200,200)
' You could change other formatting here too
' Ask if you need help with that
End If
Next
Next

End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top