
slideShowProInstance.textStrings
Property; an Array containing the English text values used for SlideShowPro's user interface. They may be exchanged with English or non-English words, but their order in the array must be maintained. The default values are:
textStrings[0] = "Previous Screen"
textStrings[1] = "Next Screen"
textStrings[2] = "Screen"
textStrings[3] = "of"
textStrings[4] = "No caption"
textStrings[5] = "No title"
textStrings[6] = "Playing"
textStrings[7] = "Paused"
The value of [0] is used for the left button in the gallery screen. The value of [1] is used for the right button in the gallery screen. The value of [2] is used as the screen-count field in the gallery screen. The value of [3] is used in both the caption title and the screen-count field in the gallery screen. The value of [4] is used in both the caption title and the screen-count field in the gallery screen. The value of [5] is used when a caption doesn't exist for an image. The value of [6] and [7] are used with audio captions in the media player.
The following example changes the "Previous Screen" text field to "Previous"
my_ssp.textStrings[0] = "Previous";

