expression.GenerateCompoundPresentation [filePath], [skinName], [slideRange]
Converts current PowerPoint presentation into separate Flash slides with Player.
| Parameters | ||||||||||||||||||||
| ||||||||||||||||||||
Standard skin for Player option will wrap your Flash movie into customizable player with thumbnails view, outlines view, slide notes view and presenter info. NavigationPanel supports most commonly used navigation operations to control slide navigation of your Flash presentation. NullSkin will allow you to publish presentation without visible Player. If you pass empty skin name as a parameter, your Flash presentation will not be wrapped with the Player. In FlashSpring 2.3 you can set Banner skin that is specially optimized for banner creation. It doesn't support transition effects and sounds but therefore the output file size is smaller in comparison with no skin option.
Sub GenerateCompoundPresentation()
Dim fs As FlashSpringAPI.FlashSpring3
Set fs = New FlashSpringAPI.FlashSpring
fs.OpenPresentation "d:\temp\test.ppt"
fs.GenerateCompoundPresentation "c:\presentations\myMovie.swf", "Standard", "2,4"
End Sub