GetSlide()

For a Slideshow object named Slideshow 1, to display the current slide in a Page variable named slideNum, use the following syntax:

slideNum = (Slideshow_1.GetSlide() + 1)

Note:
In this example, the Page variable slideNum gets the return value of the GetSlide function and adds 1 to it. This makes the displayed value more sensible to the user as the first slide will be displayed as the number 1 and not 0.

Close