S&R in ppt

  • Thread starter Thread starter rayw
  • Start date Start date
R

rayw

Is there a way to replace a string using a certain font, with the same
string - but using a different font?

Ta!
 
Is there a way to replace a string using a certain font, with the same
string - but using a different font?

Using VBA, probably so, at least for most of the text in a normal presentation.

Pseudo code:

For each slide in the presentation
For each shape on the slide
If the shape has text
For each Run in the shape's text range
If the Run's text = the string you're looking for then
If the Run's font is the one you want to replace then
Change the Run's font

If none of that made any sense, then this isn't the project you want to start
learning VBA with. ;-)
 

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