Results 1 to 6 of 6

Thread: random image, simple controls gallery

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

    Default random image, simple controls gallery

    1) Script Title: Simple Controls Gallery v1.3

    2) Script URL (on DD):
    http://www.dynamicdrive.com/dynamici...plegallery.htm

    3) Describe problem:

    Is it possible for the simpleGallery to load an random image?

  2. #2
    Join Date
    Aug 2004
    Posts
    10,143
    Thanks
    3
    Thanked 1,008 Times in 993 Posts
    Blog Entries
    16

    Default

    Do you mean scramble the actual order of the images (so the 1st image is a different one each time), or retain the order of the images, just load one randomly (ie: 3rd image the first time, 1st image the 2nd etc)?
    DD Admin

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

    Default

    Thanks for your quick response.
    retain the order of the images, just load one randomly (ie: 3rd image the first time, 1st image the 2nd, 5th image the 3rd etc.
    Last edited by roytje9; 03-30-2009 at 06:09 AM.

  4. #4
    Join Date
    Aug 2004
    Posts
    10,143
    Thanks
    3
    Thanked 1,008 Times in 993 Posts
    Blog Entries
    16

    Default

    Sure, just find the below line inside the script:

    Code:
    setting.curimage=(setting.persist)? simpleGallery.routines.getCookie("gallery-"+setting.wrapperid) : 0
    and change that to:

    Code:
    setting.curimage=(setting.persist)? simpleGallery.routines.getCookie("gallery-"+setting.wrapperid) : Math.floor(Math.random()*setting.imagearray.length)
    DD Admin

  5. The Following User Says Thank You to ddadmin For This Useful Post:

    roytje9 (03-23-2009)

  6. #5
    Join Date
    Mar 2009
    Posts
    6
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default

    Thank you for your help i really appreciate it.
    Is it also possible to load every image random not just the first one?
    Last edited by roytje9; 03-25-2009 at 07:56 AM.

  7. #6
    Join Date
    Mar 2009
    Posts
    6
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default

    How is it also possible to scramble the actual order of the images?

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
  •