Sorry for the delay. Try the following to make the carousel auto slide as the mouse is over a link. First, add the below script to your page:
Code:
<script type="text/javascript">
function autostep(galleryid, steps, interval){
if (typeof window['timer'+galleryid]!="undefined")
clearInterval(window['timer'+galleryid])
window['timer'+galleryid]=setInterval(function(){stepcarousel.stepBy(galleryid, steps)}, interval+500)
}
function autostepstop(galleryid){
if (typeof window['timer'+galleryid]!="undefined")
clearInterval(window['timer'+galleryid])
}
</script>
Then for your navigation links, they may look something like:
Code:
<a href="#" onMouseover="autostep('mygallery', -1, 500)" onMouseout="autostepstop('mygallery')">Back 1 Panel</a> <a href="#" onMouseover="autostep('mygallery', 1, 500)" onMouseout="autostepstop('mygallery')" style="margin-left: 100px">Forward 1 Panel</a> <br />
where "mygallery", 1, and 500 represent the id of the carousel, the steps to take each time (negative means backwards), and the interval between slides.
Bookmarks