No worry my friend!!
button4 is supposed to be the previous button and button 5 the next one. Note that I just changed the programming of the default code to scroll the inventory, so instead of scrolling a whole page left or right it just scrolls one item
Yeah! I just made my first helpful (towards somebody) post! I'm not a newbie anymore!

EDIT: Well, I started to write this post before I read the other answer
. It just took me a while to write the code down and check it, that's all...
Quoteif ((button == 4) && (game.top_inv_item < game.num_inv_items - game.num_inv_displayed)) {
// scroll down
game.top_inv_item = game.top_inv_item + 1;
}
if ((button == 5) && (game.top_inv_item > 0)){
// scroll up
game.top_inv_item = game.top_inv_item - 1;
}
button4 is supposed to be the previous button and button 5 the next one. Note that I just changed the programming of the default code to scroll the inventory, so instead of scrolling a whole page left or right it just scrolls one item

Yeah! I just made my first helpful (towards somebody) post! I'm not a newbie anymore!


EDIT: Well, I started to write this post before I read the other answer
