
Originally Posted by
Waldemar
I think there some parts of the first part of the script code which have to be deleted too, but I'm not so sure what.
Deleted and/or edited. At least near the top where the array(s) and their images and (if any) links are defined. Don't edit below this line:
Code:
////NO need to edit beyond here/////////////
For example, if you are only having one slideshow, you only need one such array defined. Care must be exercised to use the same format as the demo, including all punctuation. Unlike some demo code you will find around the web, DD rarely uses any punctuation to indicate optional items (these are usually verbally described in a commented section beginning with //). 99% of the time the punctuation is a vital part of the script code. This script is no exception. That should take care of most of your questions on part one. In part two, once again if you are only using one slideshow, you only need one 'new fadeshow' declaration. Follow the instructions for configuring that. The real key is that whatever you named your array at the top of step one, must be the first parameter of the declaration -
From step one:
Code:
var fadeimages=new Array()
From step two:
Code:
new fadeshow(fadeimages, 140, 225, 0, 3000, 1, "R")
One other tidbit that might be of help. Step two goes in the body. When you are looking at your code in the text editor, that would be between a tag that starts <body and may have other info in it before its >, ex:
HTML Code:
<body bgcolor="#FFFFFF" text="#000000">
So between that and the closing </body> tag always found near the end of the page.
Bookmarks