SlideShow.SetSize

SlideShow.SetSize ( 

string ObjectName,

number Width,

number Height )

Example 1

SlideShow.SetSize("Grower", 400, 350);

Sets the "Grower" slideshow object's width to 400 pixels and it's height to 350 pixels.

Example 2

SlideShow.SetSize("Expand", SlideShow.GetSize("Expand").Width + 200, SlideShow.GetSize("Expand").Height + 100);

Increases the "Expand" slideshow object's current width by 200 pixels and it's current height by 100 pixels. The SlideShow.GetSize action is used here to get the current size of the slideshow object.

See also:  Related Actions