Well then, it should work, yes. Specifying the paths to a local file can be a little tricky, but if everything exists within the same directory, then you should be able to just enter the file names, such as:
Code:
//define images. You can have as many as you want:
photos[0]="photo1.jpg"
photos[1]="photo2.jpg"
photos[2]="photo3.jpg"
This versus if the images are in a different directory. Then you would have to use the "file:///" protocol to specify the path, which if I'm not mistaken varies in some browsers. For Firefox, it might look like this:
Code:
//define images. You can have as many as you want:
photos[0]="file:///d:/myimages/photo1.jpg"
photos[1]="file:///d:/myimages/photo2.jpg"
photos[2]="file:///d:/myimages/photo3.jpg"
But again, if everything is in the same directory, the above should be irrelevant.
Bookmarks