Here:
Code:
variableslide[0]=['ball.gif', '', '']
variableslide[1]=['spaceship.gif', 'http://www.space.com', 'Has aliens landed on earth? You decide.']
variableslide[2]=['cake.gif', '', '']
Those are the image sources. Use the same sources there as you would for a regular image tag. So if this works in the normal HTML of the page:
HTML Code:
<img src="some_image.jpg">
This will work in the script:
Code:
variableslide[0]=['some_image.jpg', '', '']
You may also include the path if different than the current folder, just as you can in an image tag's src attribute.
Bookmarks