Description
Gets or sets the boolean value indicating whether the presentation
playback loops continuously until the user presses ESC. The default
value is False.
Type
boolean (read/write)
Example
This example can help to create Flash banner from your presentation.
Sub AudioOperations()
Dim fs As New FlashSpringAPI.FlashSpring
fs.OpenPresentation "d:\temp\test.ppt"
fs.Settings.BackgroundAudio.LoopAudio = True
fs.Settings.Playback.LoopPresentation = True
fs.Presentation.Height = .Height * 0.2
fs.Presentation.Width = .Width * 0.2
fs.GenerateFlash "c:\presentations", "myMovie.swf", OM_SOLID
fs.ClosePresentation
fs.ClosePowerPoint
End Sub