Ok, here is a working example on how the paging can be done.
in iTunes+.js find:
code:
if(sMessage == ">" || sMessage == "\">\""){
Replace with:
code:
var offset = 0;
if ((match = sMessage.match(/^([<>]) *([0-9]*)?\s*$/)) != null)
{
sMessage = match[1];
if (match[2]) offset = parseInt(match[2]);
}
if(sMessage == ">" || sMessage == "\">\""){
if (offset) nextpage[sOrigin] = offset;
After these changes you can send offset of the list you want see.
i.e.:
code:
>123
It will return list of 10 started from file number 123
you can add spaces before or after the number, they will be ignored.