You forgot the link to the script on DD - is it this one?: http://www.dynamicdrive.com/dynamici...ropitslide.htm
(please always provide the link - asking for help but also asking for us to go hunting for stuff on your behalf reduces the likelihood of a reply)
1) - When online, Images (or javascript and css files) should be reference as an absolute link ('http://www.xsitetest.com/Images/image1.jpg') OR as a relative link ('/Images/image1.jpg') and must be in the location specified by the script. If you're working on your computer and not connected to the internet, you'll need to use relative links only. Also remember to upload the images to your server and check that file names match your code. At the moment, none of your referenced images appear to be uploaded to the locations you specified, which are as follows;
http://www.xsitetest.com/Images/image1.jpg
http://www.xsitetest.com/Images/Rat.jpg or
http://www.xsitetest.com/photo3.jpg
The URLs that you have used in the images arrays need to be encased in quotes - so;
Code:
myimages[0]=["/Images/image1.jpg", "http://www.xsitetest.com/Chrustmaster.html", "_Blank"]
rather than;
Code:
myimages[0]=["/Images/image1.jpg", http://www.xsitetest.com/Chrustmaster.html, "_Blank"]
Also, I think you are confused as to what the URL is for - that is a hyperlink option that will allow the user to click an image and be taked to the referenced page. In your arrays, the visitor will click the first 2 images and be taken to your http://www.xsitetest.com/Chrustmaster.html page. The 3rd image will take them to http://www.javascriptkit.com. This URL isnt to make the slideshow appear on the referenced page, which is how your post appears to read.
2) - The javascript file must also be in the location you reference via the script call in the HEAD, either using an absolute or relative link. You have used http://www.xsitetest.com/dropinslideshow.js - this path is pointing to the root of your website and not in the 'Images' folder as you suggested. The script should be uploaded to the root of your site to match this existing path but you could change it to http://www.xsitetest.com/Images/dropinslideshow.js and upload it to your 'Images' folder instead.
Hope that helps
Bookmarks