vba - Change text effects in PowerPoint -
i want change text effects in powerpoint, glow effect.
i have ~2500 powerpoint files 1-15 slides in each, , need change text have text glow effect (not shape glow effect).
i thought easiest approach create macro, couldn't find way this.
here's starting point glow part:
pass reference shape containing text sub; edit radius, color , transparency suit.
sub glowthetextin(osh shape) osh.textframe2.textrange .font.glow .radius = 25 .color = rgb(255, 0, 0) .transparency = 0.5 end end end sub
this give starting point doing each presentation in folder, each slide in presentation, each shape on slide:
do -- every shape on slide, every slide in presentation, every presentation in folder http://www.pptfaq.com/faq00594_do_something_to_--_every_shape_on_a_slide-_every_slide_in_a_presentation-_every_presentation_in_a_folder.htm
Comments
Post a Comment