Opera user from Poland.
Use the buttons to scroll the page automatically. You may press the buttons multiple times to speed up the scrolling. Press escape to stop /slow down the scrolling. I will add the buttons to the PowerButtons soon.
Scroll
function AutoScroll()
{
window.scrollBy(0,1);
NextScroll = setTimeout('AutoScroll()', 480);
window.onkeydown = StopScroll;
};
function StopScroll(e)
{
if(e.keyCode == 27)
{
clearTimeout(NextScroll);
};
};
AutoScroll();