Hi
I found that if I set my selected articles to show in random order, then on the first view they will be totally random on each page load.
But when the articles change, then they will always change in the exact same order regardless of any page chang er reload. The next articles showing up are always in the same order.
I fixed it by going into the file: mod_ajaxscroller.php going to line 407 (under $order=='random') and changing: ksort($rows); into shuffle($rows);
That change ensured that the random order is random when the articles change and not just on the first artciles shown on each page load.