Description
Indicates whether export of the animation effects is enabled. The
default value is True.
Type
boolean (read/write)
Example
This example enables export of animation and slide transition effects and creates solid Flash file with Player.
Sub Test()
Dim fs As New FlashSpringAPI.FlashSpring
fs.OpenPresentation "d:\temp\test.ppt"
fs.Settings.Playback.EnableAnimationEffects = True
fs.Settings.Playback.EnableTransitionEffects = True
fs.GenerateFlash "c:\presentations", "myMovie.swf", OM_SOLID, "Standard"
fs.ClosePresentation
fs.ClosePowerPoint
End Sub
See Also
EnableTransitionEffects
Property