Log in

View Full Version : Resolved Getting rid of random effects in DHTML Slide Show Script



timv
01-16-2009, 09:18 PM
http://www.dynamicdrive.com/dynamicindex14/dhtmlslide.htm

*Fixed, read third post.*

Hey, I installed the script and it's working fine but I don't want those corny slideshow effects after each image. How do I get rid of those so it's a quick cut to the next image?

Thank you!!

Nile
01-16-2009, 09:57 PM
Would this work for you?:
http://www.dynamicdrive.com/dynamicindex14/preloadslide.htm

timv
01-16-2009, 11:21 PM
I think I fixed it. I found the same question somehwere else. Thanks much.

I'll just post it here incase someone else has the same pronlem.

Find this function in the script:
function applyeffect(){
if (document.all && photoslider.filters){
photoslider.filters.revealTrans.Transition=Math.floor(Math.random()*23)
photoslider.filters.revealTrans.stop()
photoslider.filters.revealTrans.apply()
}
}Make it look like this:
function applyeffect(){
return;
if (document.all && photoslider.filters){
photoslider.filters.revealTrans.Transition=Math.floor(Math.random()*23)
photoslider.filters.revealTrans.stop()
photoslider.filters.revealTrans.apply()
}
}