Still not using a text editor, I would guess. In any event, whatever the case with the editor, here is what you have:
Code:
var slideshowcontent=new Array()
//Define slideshow contents: [image URL, OPTIONAL LINK, OPTIONAL LINK TARGET]
slideshowcontent[0]=["image/obj240geo248pg26p8.jpg", "", ""] slideshowcontent[1]=["image/obj259geo267pg27p8.jpg", "", ""] slideshowcontent[2]=["image/obj262geo270pg28p8.jpg", "", ""]
Here is what you need:
Code:
var slideshowcontent=new Array()
//Define slideshow contents: [image URL, OPTIONAL LINK, OPTIONAL LINK TARGET]
slideshowcontent[0]=["image/obj240geo248pg26p8.jpg", "", ""]
slideshowcontent[1]=["image/obj259geo267pg27p8.jpg", "", ""]
slideshowcontent[2]=["image/obj262geo270pg28p8.jpg", "", ""]
Interestingly enough, this (with semicolons separating the array entries) would also work:
Code:
var slideshowcontent=new Array()
//Define slideshow contents: [image URL, OPTIONAL LINK, OPTIONAL LINK TARGET]
slideshowcontent[0]=["image/obj240geo248pg26p8.jpg", "", ""];slideshowcontent[1]=["image/obj259geo267pg27p8.jpg", "", ""];slideshowcontent[2]=["image/obj262geo270pg28p8.jpg", "", ""];
At this point, it is just a case of giving the script interpreter something that it can understand.
Bookmarks