How to set "I want Embedded Font" for my presentation with VBA ?

  • Thread starter Thread starter Florian
  • Start date Start date
F

Florian

Hi,

i'm trying to make a startup script for all my Powerpoint presentation
and i'm looking for the methods to set the Embedded Option on with
VBA.

I checked several webpages and found read only script....

For Each usedFont In Presentations(1).Fonts
If usedFont.Embeddable Then
MsgBox usedFont.Name & ": Embeddable"
Else
MsgBox usedFont.Name & ": Not embeddable"
End If
Next usedFont

Tried to explore MSDN :
http://msdn.microsoft.com/en-us/library/aa271614(office.11).aspx

But can't find what i'm looking for :(
Does anyone know about how to touch the slideshow options ?

Thanks,

Florian
 
Back
Top