To get RSS Display Box to rotate automatically at regular intervals, inside rssdisplaybox.js, find the lines:
Code:
if (this.chunksize!=this.pieces.length) //if pagination links are indeed needed
this.buildpagination(this.paginatedivid)
and change that to:
Code:
if (this.chunksize!=this.pieces.length){ //if pagination links are indeed needed
this.buildpagination(this.paginatedivid)
var rssinstance=this
setInterval(function(){rssinstance.navigate("next")}, 5000)
}
where "5000" means auto rotate every 5 seconds. However, this still trails the RSS scroller/ticker scripts as far as features such as fading, pause onmouseover etc. They're more complicated to implement, and probably will only be done the next time these scripts are updated.
Bookmarks