You could probably script it... I made my editor resize at integers. Try this:
PHP Code:
function ScrollGUI.onScrolled(newx,newy) {
temp.newscrollx=int(newx/16)*16;
temp.newscrolly=int(newy/16)*16;
ScrollGUI.scrollpos={temp.newscrollx,temp.newscrolly};
}
Not really sure how this will work though.