Syntax
expression.Save (destination)
Description
You can save your conversion settings in the xml file and load this file in your other scripts.
| Parameters |
| Name |
Description |
Type |
Optional |
| source |
The xml file to save conversion settings. |
String |
No |
|
Return Value
none.
Remarks
Xml-file structure
Example
Sub SaveSett ings()
Dim fs As New FlashSpringAPI.FlashSpring
fs.OpenPresentation "d:\fs-test\test.ppt"
fs.Settings.Playback.LoopPresentation = True
fs.Settings.Appearance.BackgroundColor = &HFF
fs.Save "d:\temp\settings.xml"
fs.GenerateFlash "c:\presentations", "myMovie.swf", OM_SOLID, "Standard"
fs.ClosePresentation
fs.ClosePowerPoint
End Sub
See Also
Load Method,
XmlContentFile Property