Hi,
I have several hundred presentations of 1-9 slides long. I need to run
a macro on every single slide.
currently,
I have a macro that works perfectly for one slide
i have a macro that will run a macro on every single file
i am having trouble writing a macro that will apply a macro on every
slide in the presentation. This way, i can use all three macros in
combinations to apply change to all my presentation slides.
if anyone can write a script that will run a macro on every slide, or
if you have any ideas, please respond
thanks for your time
dc
David M. Marcovitz - 04 Sep 2006 19:04 GMT
I'm not completely sure what you're asking, but the general way to access
every slide is:
For Each oSld in oPres.Slides
'Do some stuff to oSld and it will be applied to each slide, e.g.:
oSld.Shapes(1).Left = 0 'moves the 1st shape on eache slide
Next oSld
--David

Signature
David M. Marcovitz
Microsoft PowerPoint MVP
Director of Graduate Programs in Educational Technology
Loyola College in Maryland
Author of _Powerful PowerPoint for Educators_
http://www.PowerfulPowerPoint.com/
"David Chang" <ldchang@gmail.com> wrote in news:1157391913.982082.193120
@p79g2000cwp.googlegroups.com:
> Hi,
>
[quoted text clipped - 15 lines]
>
> dc
Steve Rindsberg - 04 Sep 2006 19:42 GMT
> Hi,
>
[quoted text clipped - 11 lines]
> if anyone can write a script that will run a macro on every slide, or
> if you have any ideas, please respond
Some generic examples:
Do something to -- every shape on a slide, every slide in a presentation, every
presentation in a folder
http://www.pptfaq.com/FAQ00594.htm
-----------------------------------------
Steve Rindsberg, PPT MVP
PPT FAQ: www.pptfaq.com
PPTools: www.pptools.com
================================================