removing animations?

G

Geoff Cox

Hello,

Do I have any of the following right?

1. Shyam's code will remove animations from all slides but will not
touch the slide master.

Dim I As Integer: Dim J As Integer
For I = 1 To .Slides.Count
For J = .Slides(I).TimeLine.MainSequence.Count To 1 Step -1
.Slides(I).TimeLine.MainSequence(J).Delete
Next J
Next I

2. Slide master animations can be removed using the Animation Schemes
/ No animation.

3. I assume VBA can be used to carry out (2) above. What would this
be?!

Cheers

Geoff
 
G

Geoff Cox

2. Slide master animations can be removed using the Animation Schemes
/ No animation.

3. I assume VBA can be used to carry out (2) above. What would this
be?!

I haev just found a line of Shyam's on the Net which gave the answer!

For i = oPresentation.Designs(1).SlideMaster.TimeLine.
_MainSequence.Count To 1 Step -1

oPresentation.Designs(1).SlideMaster.TimeLine. _
MainSequence(i).Delete

Next i

Geoff
 

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

Top