
slideShowProInstance.toggleDisplayMode(mode);
mode:String [optional] - A string containing the requested mode change. Values include "Auto" (for auto-playback) and "Manual" (to stop).
Nothing.
Method; toggles the auto/manual playback of SlideShowPro. May be used to stop and start automatic playback of a slideshow when assigned to a button. When requested without parameters, it acts as a toggle between playback modes.
This example assigns toggleDisplayMode to the onRelease method of a movie clip with an instance name of "play_bttn":
play_bttn.onRelease = function() {
my_ssp.toggleDisplayMode();
}
This example instructs SlideShowPro for Flash to start auto-playback (if not in "Auto" already):
play_bttn.onRelease = function() {
my_ssp.toggleDisplayMode("Auto");
}

