Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

JavaScript Forum


You are currently viewing our JavaScript Forum as a guest. Please register to participate.
Login



Reply
Slideshow Modification
Old 04-24-2007, 10:14 AM Slideshow Modification
Silent77's Avatar
Ultra Talker

Posts: 269
Name: Silent
Location: Ohio
Trades: 0
I am trying to use a slideshow(http://dynamicdrive.com/dynamicindex...nslideshow.htm) on my website. I want to know if there is anyway to set the sort order to sort descending rather than acsending.

My guess is that it would be in this code...
Code:
if (typeof displayorder!="undefined")
theimages.sort(function() {return 0.5 - Math.random();})
__________________
Firefox
rediscover the web

Please login or register to view this content. Registration is FREE
Down with internet explorer!
Silent77 is offline
Reply With Quote
View Public Profile Visit Silent77's homepage!
 
 
Register now for full access!
Old 04-24-2007, 11:41 AM Re: Slideshow Modification
jito's Avatar
MY LIFE IS 'i' LIFE

Posts: 565
Name: surajit ray
Location: inside the heart of my friends
Trades: 0
That function is sorting randomly. You need to write your own function to sort in descending order.
Use this function to sort in descending order:
Code:
function compare(x, y)
{
  return ((x < y) ? 1 : ((x > y) ? -1 : 0));
}
theimages.sort(compare);
__________________
I am not smart, that's why i don't act smart


Please login or register to view this content. Registration is FREE

Last edited by jito; 04-24-2007 at 12:04 PM.. Reason: adding
jito is offline
Reply With Quote
View Public Profile
 
Old 04-25-2007, 09:01 AM Re: Slideshow Modification
Silent77's Avatar
Ultra Talker

Posts: 269
Name: Silent
Location: Ohio
Trades: 0
Thanks that works.
__________________
Firefox
rediscover the web

Please login or register to view this content. Registration is FREE
Down with internet explorer!
Silent77 is offline
Reply With Quote
View Public Profile Visit Silent77's homepage!
 
Reply     « Reply to Slideshow Modification
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.28377 seconds with 12 queries