I've been looking for the thread where I explain this and cannot find it at the moment. Here is a link to a demo:
http://home.comcast.net/~jscheuer1/side/iss_ext/
Most of the added code is to allow for differing colored backgrounds for each slide. It does require the script:
http://home.comcast.net/~jscheuer1/s..._ext/sai_ss.js
to use the numbered buttons, whose code is this part on the page:
Code:
<script type="text/javascript">
new inter_slide(slides5, 750, 606)
document.write('<div style="text-align:center;margin-top:5px;">')
for (var i_tem = 0; i_tem < slides5.length; i_tem++)
document.write('<span id="trace0_'+i_tem+'" style="border:1px solid black;cursor:pointer;background-color:'+(i_tem? '#d9dae7' : 'white')+';padding:2px;" onclick="if (iss[0].playing){iss[0].gostop(iss[0].go(\'gostp0\'));setTimeout(\'iss[0].jumper('+[i_tem+1]+')\', 1000);}else{iss[0].jumper('+[i_tem+1]+');}">'+[i_tem+1]+'<\/span> ');
document.write('<\/div>')
</script>
The slide array name (slides5 in the above) must be mentioned as shown and the slide show instance number (1st instance is 0, second is 1, and so on, if you only have one slide show on a page, it is 0) must be used throughout the line that begins:
Code:
document.write('<span id="trace0_'+i_t . . .
in the above.
Bookmarks