alter timing of single slide

  • Thread starter Thread starter LarryH
  • Start date Start date
I guess you want to set slide to advance on time
http://presentationsoft.about.com/od/nextstepsinpowerpoint/ss/add_transitions_7.htm

Or you can select the slide which you want to change and run the macro
Sub changeSlideTransitionTime()
With ActiveWindow.Selection.SlideRange(1)
.SlideShowTransition.AdvanceOnClick = msoFalse
.SlideShowTransition.AdvanceOnTime = msoTrue
.SlideShowTransition.AdvanceTime = 15 '15 second can be changed to the
time you want to set
End With
End Sub

http://pptfaq.com/FAQ00033.htm

Thanks,
Vindys
 
Depends on how it has been added.
Click Slide Show > Slide Transition. Under advance slide, shows the duration
that the slide will stay before advancing. This will though, be affected if
the total duration in custom animation is longer.
--
Shawn Toh (tohlz)
Microsoft MVP PowerPoint

Site Updated: Feb 20, 2008
(Amazing PowerPoint animations, artworks, games here)
http://pptheaven.mvps.org
PowerPoint Heaven - The Power to Animate
 
Back
Top