/    Sign up×
Community /Pin to ProfileBookmark

How can I stop the Slide Show after 1 loop

I am running the following slide show but can’t get it to stop after the first loop through. Please help

<SCRIPT LANGUAGE=”JavaScript”>
<!– Original: CodeLifter.com ([email protected]) –>
<!– Web Site: [url]http://www.codelifter.com[/url] –>

<!– This script and many more are available free online at –>
<!– The JavaScript Source!! [url]http://javascript.internet.com[/url] –>

<!– Begin
// Set slideShowSpeed (milliseconds)
var slideShowSpeed = 5000;
// Duration of crossfade (seconds)
var crossFadeDuration = 3;
// Specify the image files
var Pic = new Array();
// to add more images, just continue
// the pattern, adding to the array below

Pic[0] = ‘images/indexmain.jpg’
Pic[1] = ‘images/binders1.jpg’
Pic[2] = ‘images/presentation.jpg’
Pic[3] = ‘images/planner1.jpg’
Pic[4] = ‘images/financial.jpg’
Pic[5] = ‘images/index1.jpg’
Pic[6] = ‘images/medical1.jpg’
Pic[7] = ‘images/legals.jpg’

// do not edit anything below this line
var t;
var j = 0;
var p = Pic.length;
var preLoad = new Array();
for (i = 0; i < p; i++) {
preLoad[i] = new Image();
preLoad[i].src = Pic[i];
}
function runSlideShow() {
if (document.all) {
document.images.SlideShow.style.filter=”blendTrans(duration=2)”;
document.images.SlideShow.style.filter=”blendTrans(duration=crossFadeDuration)”;
document.images.SlideShow.filters.blendTrans.Apply();
}
document.images.SlideShow.src = preLoad[j].src;
if (document.all) {
document.images.SlideShow.filters.blendTrans.Play();
}
j = j +1 ;
if (j > (p – 1)) j = 0;

t = setTimeout(‘runSlideShow(0)’, slideShowSpeed)
if (j == p) {
clearTimeout(t)
}
}

End –>
</script>
<meta http-equiv=”Content-Type” content=”text/html; charset=iso-8859-1″>
<link rel=”File-List” href=”index1_files/filelist.xml”>

<link rel=”File-List” href=”index1_files/filelist.xml”>

to post a comment
JavaScript

1 Comments(s)

Copy linkTweet thisAlerts:
@JPnycMar 06.2005 — Remove this line: if (j > (p - 1)) j = 0;
×

Success!

Help @billrude spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 5.7,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @AriseFacilitySolutions09,
tipped: article
amount: 1000 SATS,

tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

tipper: @darkwebsites540,
tipped: article
amount: 10 SATS,
)...