ShowSlideAnimation Property

Microsoft PowerPoint Visual Basic

Determines whether slide animations are enabled when previewing, saving, or publishing a Web presentation. Read/write MsoTriState.

MsoTriState can be one of these MsoTriState constants.
msoCTrue
msoFalse Default.
msoTriStateMixed
msoTriStateToggle
msoTrue Slide animations are enabled when previewing, saving, or publishing a Web presentation.

Example

This example specifies that slide animations in presentation two are enabled for the Web presentation. It then previews the Web page.

With Presentations(2)
    .WebOptions.ShowSlideAnimation = msoTrue
    .WebPagePreview
End With