SlideShowTransition object (PowerPoint)
Contains information about how the specified slide advances during a slide show.
Example
Use the SlideShowTransitionproperty to return the SlideShowTransition object. The following example specifies a Fast Strips Down-Left transition accompanied by the Bass.wav sound for slide one in the active presentation and specifies that the slide advance automatically five seconds after the previous animation or slide transition.
With ActivePresentation.Slides(1).SlideShowTransition
.Speed = ppTransitionSpeedFast
.EntryEffect = ppEffectStripsDownLeft
.SoundEffect.ImportFromFile "c:\sndsys\bass.wav"
.AdvanceOnTime = True
.AdvanceTime = 5
End With
ActivePresentation.SlideShowSettings.AdvanceMode = _
ppSlideShowUseSlideTimings
Properties
Name |
---|
AdvanceOnClick |
AdvanceOnTime |
AdvanceTime |
Application |
Duration |
EntryEffect |
Hidden |
LoopSoundUntilNext |
Parent |
SoundEffect |
Speed |
See also
PowerPoint Object Model Reference
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.