Title property as it applies to
the Presentation property.
Description
Gets or sets the title of the presentation.
Type
string (read/write)
Title property as it applies to
the Slide property.
Description
Gets or sets the title of the slide in presentation.
Type
string (read/write)
Example
As
it applies to the Presentation property.
This example coverts presentation into solid Flash movie and sets each
slide to advance after 5 seconds and sets the title for your Flash movie.
Sub Sample()
Dim fs As New FlashSpringAPI.FlashSpring
fs.OpenPresentation "c:\test.ppt"
With fs.Settings.Playback.ShapeAdvance
.AdvanceOnTime = True
.AdvanceTime = 5
End With
fs.Presentation.Title = "FlashSpring Quick Tour"
fs.GenerateFlash "c:\presentations", "QuickTour.swf", OM_SOLID
fs.ClosePresentation
fs.ClosePowerPoint
End Sub
As
it applies to the Slide property.
This example coverts presentation into solid Flash movie and sets each
slide advance time equal to 5 seconds and changes the title of the first three slides for the presentation.
Sub Sample()
Dim fs As New FlashSpringAPI.FlashSpring
fs.OpenPresentation "c:\test.ppt"
With fs.Settings.Playback.SlideAdvance
.AdvanceOnTime = True
.AdvanceTime = 5
End With
fs.Presentation.Title = "FlashSpring Quick Tour"
fs.Presentation.Slides(1).Title = "PowerPoint to Flash Converter"
fs.Presentation.Slides(2).Title = "Features"
fs.Presentation.Slides(3).Title = "Buy now!"
fs.GenerateFlash "c:\presentations", "QuickTour.swf", OM_SOLID
fs.ClosePresentation
fs.ClosePowerPoint
End Sub
See Also
Slide Object