how can i modify ALL the 'effects' from medium to fast in PowerPoi

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have created in Powerpoint presentation, and used various animations - but
i want to change the speed of the effect - i.e. currently whenever i 'fade
in' i do so at a medium speed -> i would like to change this to fast -
without having to go through all the slides individually. thanx
 
Seemau,
As far as I know you can't do that on all slides at once, unless you've
applied the animation on the master.
 
As Luc says there is AFAIK no simple way but it can be done with vba code.
The code would depend on the version of Powerpoint but for XP / 2003 this
should work I think.

There are instructions on using vba at http://www.pptfaq.com/FAQ00033.htm

'code start
Sub swapfadespeed()
Dim osld As Slide
Dim c As Long
For Each osld In ActivePresentation.Slides
For c = 1 To osld.TimeLine.MainSequence.Count
If osld.TimeLine.MainSequence(c).EffectType = msoAnimEffectFade Then
With osld.TimeLine.MainSequence(c).Timing
If .Duration = 2 Then .Duration = 1
End With
End If
Next
Next
End Sub
'code end
 

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