Results 1 to 4 of 4

Thread: Left right slideshow script

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

    Question Left right slideshow script

    I've just installed the image slideshow script into my site. All the images are working properly but just before my first image starts the word "undefined" is posted in the slideshow.. I've checked and rechecked the script and cant find the problem

  2. #2
    Join Date
    Aug 2004
    Location
    Brighton
    Posts
    1,563
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Hmm. Post a link to the script (I think you're talking about http://www.dynamicdrive.com/dynamici...ightslide2.htm )

    Also, post the code you are using or a link to your website which it is not working on.

    cr3ative
    A retired member, drop me a line through my site if you'd like to find me!
    cr3ative media | read the stickies

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

    Post

    the link for the slideshow is this http://dynamicdrive.com/dynamicindex...ightslide2.htm
    and the link to my site where i have the sideshow listed is
    www.katstreasuresndesign.com/tubesview.html

  4. #4
    Join Date
    Aug 2004
    Location
    Brighton
    Posts
    1,563
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Ah, I see.

    I think you need to start your array numbering from 0, not from 1.

    So change this:

    Code:
    slideimages[1]='<img src="charmsheet1KAD.gif">'
    slideimages[2]='<img src="heartsKAD1.gif">'
    slideimages[3]='<img src="tree1KAD.gif">'
    slideimages[4]='<img src="flowersample2.gif">'
    slideimages[5]='<img src="flowersample3.gif">'
    slideimages[6]='<img src="butterflysample3.psd.gif">'
    slideimages[7]='<img src="animal2KAD.gif">'
    slideimages[8]='<img src="accentswirlsKAD1.gif">'
    slideimages[9]='<img src="redswirlKAD.psd.gif">'
    slideimages[10]='<img src="crayonsKAD1.gif">'
    slideimages[11]='<img src="ladybugKAD1.psd.gif">'
    slideimages[12]='<img src="treasurechestKAD.gif">'
    To this:

    Code:
    slideimages[0]='<img src="charmsheet1KAD.gif">'
    slideimages[1]='<img src="heartsKAD1.gif">'
    slideimages[2]='<img src="tree1KAD.gif">'
    slideimages[3]='<img src="flowersample2.gif">'
    slideimages[4]='<img src="flowersample3.gif">'
    slideimages[5]='<img src="butterflysample3.psd.gif">'
    slideimages[6]='<img src="animal2KAD.gif">'
    slideimages[7]='<img src="accentswirlsKAD1.gif">'
    slideimages[8]='<img src="redswirlKAD.psd.gif">'
    slideimages[9]='<img src="crayonsKAD1.gif">'
    slideimages[10]='<img src="ladybugKAD1.psd.gif">'
    slideimages[11]='<img src="treasurechestKAD.gif">'
    cr3ative
    A retired member, drop me a line through my site if you'd like to find me!
    cr3ative media | read the stickies

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
  •