Skip to main content

On Sale: GamesAssetsToolsTabletopComics
Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

Hey! Could you help me? Now that I'm unable to select an entry, it will just jump up/down the entire list (on the left) instead of the entry's text, since I'm using PageUp and PageDown buttons for scrolling. It works fine if a category only has a few entries and there's no large list to scroll.

(3 edits) (+1)

Hi, Page Up and Page Down are default RPG Maker controls to move through an entire page in a selectable list. Do you have to have those be the scroll keys? I can disable those from working in the encyclopedia scene, but it might be odd for players who are used to controlling the windows that way in other scenes.

If you want to disable Page Up and Page Down from scrolling the list window, you can add the js to the bottom of the plugin file (basically it makes those keys do nothing when pressed):

CGMZ_Window_EncyclopediaList.prototype.cursorPagedown = function() {
};
CGMZ_Window_EncyclopediaList.prototype.cursorPageup = function() {
};

Thank you! I suppose I'll try to find other sutiable buttons or get my players to use the mouse wheel. Sorry for the trouble!