In theory you should be able to use the "onChange" event handler of the script to determine which index the user is currently at, then dynamically enable only the neighboring pagination links to show as well. First, you'd get a reference to all the pagination links, using something like:
Code:
var paginationlinks=document.getElementById("paginationdiv").getElementsByTagName("a")
Then, inside the configuration code for Featured Content Slider, you may use the "onChange" event handler (see bottom of script page) in a manner such as:
Code:
onChange: function(previndex, curindex){
for (var i=0; i<paginationlinks.length; i++){
//enable previous and next 3 pagination links from current)
paginationlinks[i].style.display=(i>=curindex-3 && i<=curindex+3)? "block" : "none"
}
}
That's the theory anyhow.
Bookmarks