Description
Determines whether the background audio loops continuously during the
presentation playback. The default value is False.
Type
boolean (read\write)
Example
This example converts presentation into solid Flash movie with
background audio loaded from the file sounds.mp3. Background audio loops
continuously through the presentation playback.
Sub Test()
Dim fs As New FlashSpringAPI.FlashSpring
fs.OpenPresentation "c:\test.ppt"
With fs.Presentation.BackgroundAudio
.SourceFile = "c:\sounds.mp3"
.LoopAudio = True
End With
fs.GenerateFlash "c:\presentations", "myMovie.swf", OM_SOLID, "Standard"
fs.ClosePresentation
fs.ClosePowerPoint
End Sub