Description
Returns or sets screen height for image optimization.
Type
long (read/write)
The default value is 768
Remarks
If set value is smaller than presentation
size, images will be optimized for the presentation dimensions.
Example
This example converts presentation into solid Flash movie and optimize images
for 1024x768 screen.
Sub Sample()
Dim fs as FlashSpring3
Set fs = New FlashSpringAPI.FlashSpring
fs.OpenPresentation "c:\test.ppt"
fs.settings3.Appearance3.OptimizeImagesForScreenResolution = True
fs.settings3.Appearance3.ScreenWidth = 1024
fs.settings3.Appearance3.ScreenHeight = 768
fs.GenerateSolidPresentation "c:\presentations\myMovie.swf", "Standard", "2,4"
End Sub