/****************************************************************
scroll functions...
****************************************************************/
var scrollTimer = null;
function scroll2(step){
clearTimeout(scrollTimer);
if ( !busy && (step<0&&activePage.y+activePage.h>scroller1.h || step>0&&activePage.y<0) ){
activePage.moveBy(0,step);
scrollTimer = setTimeout('scroll('+step+')',40);
}
}
function stopScroll2(){
clearTimeout(scrollTimer);
}
Jag ändrade till scroll2, men det gjorde ingen skillnad. Har jag missat att ändra på något ställe? Var det endast i scrollfunctions som jag skulle ändra?