SlideShow.SetProperties

SlideShow.SetProperties ( 

string ObjectName,

table  Properties )

Example 1

-- Create a table of the properties you want to set.
tbProps = {};
tbProps.Loop=true;
tbProps.Transitions=true;

-- Set the object's properties.
SlideShow.SetProperties("SlideShow1",tbProps);

Sets the "SlideShow1" slideshow object to loop and to have a transition effect between slides.

See also:  Related Actions