Quote:
Originally Posted by acoder
You've redefined the same functions. You need to rename the second set for them to work together or you could reuse the same functions by calling them.
Secondly, you have used gImages again. You need to rename that otherwise you have overwritten the previous code.
To run it onmouseover, move the setInterval line into the onmouseover event handler:
[HTML]<img ... onmouseover="setInterval(...)">[/HTML] Mind the quotes - make sure you don't mix them up.
Don't forget to clear the interval onmouseout.
Hi there
Thanks for all your help up to now.
Everything seems to be working fine now except that my clear interval on mousout is not working
Is this what it should look like?
onmouseover="setInterval('nextSlide()',gSlideshowI nterval * 1500)" onmouseout="clearInterval"(gSlideshowInterval * 1500)"
I have also tried it like this:
onmouseout="clearInterval('nextSlide()',gSlideshow Interval * 1500)"
Thanks