Well, if you are getting red X's, that usually means that your images are not on the server or not on the server in the place where the code indicates that they are. It can also mean that the case (upper and lower case matter on the web) of the image names in the code does not match those that they have on the server. First make sure none of these problems exist.
Now, on to your question. Each entry in the array of images must contain three items though the second two or just the third one may be left blank. So, these are OK:
Code:
slideshowcontent[0]=["BC1.jpg", "http://www.pigeonplace.com", "_new"]
slideshowcontent[1]=["BC2.jpg", "", ""]
slideshowcontent[2]=["BC3.jpg", "http://www.pigeonplace.com", ""]
These are not:
Code:
slideshowcontent[3]=["BC4.jpg"]
slideshowcontent[4]=["BC5.jpg"]
The second item is an optional link for the image and the third, an optional target for that link. These are, as I said, optional. But, must be represented by the empty quotes if not used.
For more help:
Please post a link to the page on your site that contains the problematic script so we can check it out.
Bookmarks