What you have is erroneous:
Code:
fadeimages[0]=["rotate/01.JPG", "rotate/02.JPG", "rotate/03.JPG", "rotate/04.JPG", "rotate/05.JPG", "rotate/06.JPG", "rotate/07.JPG", "rotate/08.JPG", "rotate/09.JPG", "rotate/10.JPG", "rotate/11.JPG","rotate/12.JPG", "rotate/13.JPG", "rotate/14.JPG", "rotate/15.JPG", "rotate/16.JPG", "rotate/17.JPG", "rotate/18.JPG"] //plain image syntax
...where in fact, it should be like this:
Code:
fadeimages[0]=["rotate/01.JPG"]
fadeimages[1]=["rotate/02.JPG"]
fadeimages[2]=["rotate/03.JPG"]
.
.
.
Alternatively, you can just change highlighted to fadeimagesArray:
Code:
fadeimages[0]=["rotate/01.JPG", "rotate/02.JPG . . .
...and add this just above the fadebgcolor declaration:
Code:
for(var i=0;i<fadeimagesArray.length;i++)
fadeimages[i]=[fadeimagesArray[i]]
var fadebgcolor="white"
Hope that helps.
Bookmarks