Results 1 to 3 of 3

Thread: Getting rid of random effects in DHTML Slide Show Script

  1. #1
    Join Date
    Jan 2009
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Getting rid of random effects in DHTML Slide Show Script

    http://www.dynamicdrive.com/dynamici...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!!
    Last edited by timv; 01-16-2009 at 11:22 PM.

  2. #2
    Join Date
    Jan 2008
    Posts
    4,168
    Thanks
    28
    Thanked 628 Times in 624 Posts
    Blog Entries
    1

  3. #3
    Join Date
    Jan 2009
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    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()
    }
    }

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •