PauseAnimation Property

Applies To

PlaySettings object.

Description

True if the slide show pauses until the specified media clip is finished playing. False if the slide show continues while the media clip plays in the background. Read/write Long.

Remarks

For the PauseAnimation property setting to take effect, the PlayOnEntry property of the specified shape must be set to True.

Example

This example specifies that shape three on slide one in the active presentation will be played automatically when it's animated and that the slide show won't continue while the movie is playing in the background. Shape three must be a sound or movie object.

Set OLEobj = ActivePresentation.Slides(1).Shapes(3)
With OLEobj.AnimationSettings.PlaySettings
    .PlayOnEntry = True
    .PauseAnimation = True
End With