Ah, I see a real problem and a minor problem, there could be others. This script:
Code:
<script language="JavaScript1.2" type="text/javascript">
window.focus();
var slideshow_width='780px' //SET IMAGE WIDTH
var slideshow_height='168px' //SET IMAGE HEIGHT
var pause=4500 //SET PAUSE BETWEEN SLIDE (3000=3 seconds)
var fadeimages=new Array()
//SET 1) IMAGE PATHS, 2) optional link, 3), optional link target:
fadeimages[0]=["banner14.jpg", "", ""] //plain image syntax
fadeimages[1]=["banner16.jpg", "", ""] //plain image syntax
fadeimages[2]=["bann . . .
Is outdated and looks like a DD script without the credit, a violation of DD use policy. The missing credit is the minor problem. Lightbox (by the way) is an exception to this use policy, ddadmin has told me that since lightbox is third party and the author hasn't inserted a credit on the calling pages, that's fine with him. The real problem is that the fading slide script is outdated. You should use (usage is different than the old version you have):
http://www.dynamicdrive.com/dynamici...nslideshow.htm
instead or, better yet, this version (which I've modded for better xbrowser compliance - usage is the same as the above linked DD library script):
http://www.dynamicdrive.com/forums/s...22&postcount=2
In any event, the problem caused by the version you are using is that it defines the variable pause globally. That same variable was defined globally by lightbox but, by the time it goes to use it, it is no longer available as lightbox had defined it.
The updated fade script will fix this because its variables are local, not global.
Bookmarks