Click to See Complete Forum and Search --> : slideshow images


damma
02-03-2003, 06:29 PM
I downloaded a script http://codelifter.com/main/javascript/slideshow3.html

I have dreamweaver 4.I got the 1st picture and caption to work,but how do you add more pictures? I understand same amount of pictures and captions, but doesn't say how to add more.Tried adding the pics and captions on the code but I couldn't get it to work.don't know if I explained this to well.......from the older generation and all this computor stuff is new to me......but sure fun.....lol.
Thanks so much!

pyro
02-03-2003, 07:02 PM
Not sure I really understand what you mean. Do you want to add more than the ten pre-specified? It should work fine to just add them on to the end.

Picture[9] = 'Image009.jpg';
Picture[10] = 'Image010.jpg';
Picture[11] = 'Image011.jpg';
Picture[12] = 'Image012.jpg';
...


Caption[9] = "This is the ninth caption.";
Caption[10] = "This is the tenth caption.";
Caption[11] = "This is the eleventh caption.";
Caption[12] = "This is the twelfth caption.";
...