sorry for the noise, found it (not tested) on this post: http://charlie-roberts.com/Control/?cat=3
oscManager.delegate = {
processOSC : function(oscAddress, typetags, args) {
switch(oscAddress) {
case “/nextPage”:
control.changePage(‘next’);
break;
case “/previousPage”:
control.changePage(‘previous’);
break;
case “/changeToPage”:
control.changePage(args[0]);
break;
}
}
}