LoopUntilStopped Property

Applies To

PlaySettings object, SlideShowSettings object.

Description

PlaySettings object: True if the specified movie or sound loops continuously until either the next movie or sound starts, the user clicks the slide, or a slide transition occurs. Read/write Long.

SlideShowSettings object: True if the specified slide show loops continuously until the user presses ESC. Read/write Long.

Example

This example specifies that shape three on slide one in the active presentation will start to play in the animation order and will continue to play until the next media clip starts. Shape three must be a sound or movie object.

ActivePresentation.Slides(1).Shapes(3).AnimationSettings.PlaySettings _
    .LoopUntilStopped = True
This example starts a slide show of the active presentation that will automatically advance the slides (using the stored timings) and will loop continuously through the presentation until the user presses ESC.

With ActivePresentation.SlideShowSettings
    .AdvanceMode = ppSlideShowUseSlideTimings
    .LoopUntilStopped = True
    .Run
End With