Find this section (highlighted) in the slideshow script:
Code:
. . . fernce=500; // The speed that the autplay speed is changed by
autostart=1;
preloadslides=1;
</SCRIPT><!-- end of configurable script --><!-- plugin scripts --><SCRIPT>
// Random order script
function makeRandom() {
tempimage = new Array();
for(p=0;p<theimage.length;p++){
for(p1=0;p1>-1;p1) {tempNum = Math.floor(Math.random()*theimage.length)
if(!tempimage[tempNum]){tempimage[tempNum]=theimage[p];break}}}
for(p=0;p<theimage.length;p++)theimage[p]=tempimage[p]}
if(randomorder==1)makeRandom()
// Preloader
function preloadSlide() {for(k=0;k<til;k++) {theimage[k][1]=new Image().src=theimage[k][1];}}
// Add extra functions between the {} if you need other functions that require the onload
window.onload=function(){
if(window.preloadslides)preloadSlide();if(window.autostart)slidePlay();}
// NS4 resize handler
window.onresize=function(){
if(document.layers)this.locat . . .
Change it as shown:
Code:
. . . fernce=500; // The speed that the autplay speed is changed by
autostart=1;
preloadslides=1;
</SCRIPT><!-- end of configurable script --><!-- plugin scripts --><SCRIPT>
// Random order script
function makeRandom() {
tempimage = new Array();
for(p=0;p<theimage.length;p++){
for(p1=0;p1>-1;p1) {tempNum = Math.floor(Math.random()*theimage.length)
if(!tempimage[tempNum]){tempimage[tempNum]=theimage[p];break}}}
for(p=0;p<theimage.length;p++)theimage[p]=tempimage[p]}
if(randomorder==1)makeRandom()
// Preloader
function preloadSlide() {for(k=0;k<til;k++) {theimage[k][1]=new Image().src=theimage[k][1];}}
// Add extra functions between the {} if you need other functions that require the onload
window.onload=function(){
if(window.preloadslides)preloadSlide();if(window.autostart)slidePlay();
loadFunction();
}
// NS4 resize handler
window.onresize=function(){
if(document.layers)this.location=this.locat . . .
Bookmarks