Warning: Please include a link to the DD script in question in your post. See this thread for the proper posting format when asking a question.
There are many ways do to this. For example, for the code of Step 2, change it to:
Code:
<script type="text/javascript">
function runslideshow(){
//new fadeshow(IMAGES_ARRAY_NAME, slideshow_width, slideshow_height, borderwidth, delay, pause (0=no, 1=yes), optionalRandomOrder)
new fadeshow(fadeimages, 140, 225, 0, 3000, 1, "R")
new fadeshow(fadeimages2, 140, 225, 0, 3000, 0)
}
setTimeout("runslideshow()", 3000) //start slideshows after 3 seconds
</script>
Basically all I'm doing is putting the code to run inside a function, then using setTimeout() to create the delay before execution.
Bookmarks