|
Jeremy on advance image gallery slideshow
Jeremy, I have gotten the original Advance Image Gallery code to work.
I tried to follow the session you had on adding the slideshow to the large images.
I followed all of the code except the last change where guermantes took 3 hours to figure it all out and he "turned your code into the following" . . .
/*pick up click on main image and if so restart slideshow (load one image immediately while waiting for slideshow to kick in)*/
_root.fullImage_mc.onRelease = function() {
clearInterval(autoplay);/*Needed to prevent movie mayhem when people try to doubleclick large images repeatedly*/
callFullImage(current);
current++;
if (_root.myImagesTotal == current) {
current = 0;
}
autoplay = setInterval(slideshow, 5000, _root.current);
};
I am not clear on which parts that code replaces or where to put it.
Any help is greatly appreciated. I have been working on this for some time.
Thanks.
bnk123456
|