If you go down that road, all of the shows should start in stopped mode as in the third demo (slides3) on the demo page does. Since this is the one you say you are using, that much should be fine. However, it would also be a good idea to stop each show when it becomes display none because otherwise, unless it's images are already loaded, odd things may happen in some browsers. There could be competition over incremental preloading, or a lack of it. The first will bog down the displaying show, the second could result in images displayed incorrectly or as missing image tokens.
Each slide show is represented in the iss array by a number corresponding to the order in which it appears in the page's source code:
would be the first slide show.
To stop it, use this code:
Code:
if(iss[0].playing)
iss[0].gostop(document.getElementById('gostp0'));
Or, to stop any show by its number:
Code:
function stopShow(n){
if(iss[n].playing)
iss[n].gostop(document.getElementById('gostp' + n));
}
Usage:
Bookmarks