Syntax
OpenPresentation (source)
Description
Opens the specified presentation.
| Parameters |
| Name |
Description |
Type |
Optional |
| source |
The path to the presentation to be opened. |
String |
No |
|
Return value
none.
Remarks
The file path for your presentation may contain blanks, so it is better
to enclose all file paths in double quotes.
Example
Creates set of Flash movies with the name template "MyMovie.swf" in directory c:\presentations with Player using skin "MySkin".
Sub SimpleConversion()
Dim fs As New FlashSpringAPI.FlashSpring
fs.OpenPresentation "d:\temp\test.ppt"
fs.GenerateFlash "c:\presentations", "MyMovie.swf", OM_SEPARATE, "MySkin"
fs.ClosePresentation
fs.ClosePowerPoint
End Sub
See Also
ClosePresentation Method,
MakeFlashPresentation Method