ok, i got it. DD wants the credit not only in the external JS but also in the HTML that contains it.
i'm sorry, i misunderstood. i will write in the credit in all of the HTML pages. thanks!
for those of you that wants to be able to go to another page right after the show ends, here is the code that my buddy, jay, helped me with:
Code:
var whichlink=0
var whichimage=0
var blenddelay=document.images.slide.filters[0].duration*1000
function slideit() {
if (!document.images) return
document.images.slide.filters[0].apply()
document.images.slide.src=imageholder[whichimage].src
document.images.slide.filters[0].play()
whichlink=whichimage
if (whichimage<=slideimages.length-2) {
setTimeout("slideit()",slidespeed+blenddelay)
}
else {
window.location.href("url.html");
}
whichimage++;
}
slideit();
Bookmarks