-
How can I *break* out of this JS loop?
This is a fairly simple slideshow, but it is an infinite loop. How can I "break" out of it when I've displayed the last image? I've tried every variation of
-break- and -continue- that I know of.
All suggestions welcome.
============================
<script language="JavaScript">
// Duration of image (in milliseconds)
var slideShowSpeed = 5000
// Duration of crossfade (in seconds)
var crossFadeDuration = 3
var Pic = new Array()
Pic[0] = 'p01.jpg'
Pic[1] = 'p02.jpg'
Pic[2] = 'p03.jpg'
Pic[3] = 'p04.jpg'
Pic[4] = 'p05.jpg'
Pic[5] = 'p06.jpg'
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.filters){
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){
document.images.SlideShow.filters.blendTrans.Play()
}
j = j + 1
if (j > (p-1)) j=0
t = setTimeout('runSlideShow()', slideShowSpeed)
}
//-->
</script>
===================================
Thanks for your help.
Uncle Richard
Similar Threads
-
By javatier in forum Java
Replies: 16
Last Post: 02-18-2011, 12:48 PM
-
By tc_lawabider in forum Java
Replies: 2
Last Post: 03-16-2006, 07:39 PM
-
By naazrael in forum Java
Replies: 2
Last Post: 12-14-2005, 11:22 AM
-
By draven2kg in forum VB Classic
Replies: 2
Last Post: 08-25-2005, 02:00 PM
-
By salvinger in forum VB Classic
Replies: 0
Last Post: 05-07-2005, 01:38 PM
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Development Centers
-- Android Development Center
-- Cloud Development Project Center
-- HTML5 Development Center
-- Windows Mobile Development Center
|