SlideShow.GetProperties

table SlideShow.GetProperties ( 

string ObjectName )

Example 1

tProperties = SlideShow.GetProperties("SlideShow1");

Gets the properties from the slideshow object 'SlideShow1' and stores them in table 'tProperties'.

Example 2

sFiles = "";
tbProps = SlideShow.GetProperties("SlideShow1");

if (tbProps) then
    if (tbProps.ImageFiles) then
        for index, path in pairs(tbProps.ImageFiles) do
            sFiles = sFiles..path.."\r\n";
        end
        Dialog.Message("Image Files", sFiles);
    end
end

Gets the properties from the slideshow object 'SlideShow1' and stores them in table 'tbProps'. Then a dialog message is shown containing the paths of all of the image files in the object.

See also:  Related Actions