Hi Marcel,
Quote:
Originally Posted by Mackx
Hi Glenn,
How do you scroll down on a large help section? Are you using the stylus or a key combination that I do not know yet? In 0.10.7 a short-press would scroll one page down and a long-press would get you to the next section. Is there a new trick in 0.12.10?
Marcel.
|
These are all the posible actions (from "fbreader/src/fbreader/FBReaderActionCode.cpp"):
Can't you use any of these:
Code:
PAGE_SCROLL_FORWARD = "pageForward";
PAGE_SCROLL_BACKWARD = "pageBackward";
LINE_SCROLL_FORWARD = "lineForward";
LINE_SCROLL_BACKWARD = "lineBackward";
MOUSE_SCROLL_FORWARD = "mouseScrollForward";
MOUSE_SCROLL_BACKWARD = "mouseScrollBackward";
TAP_SCROLL_FORWARD = "tapScrollForward";
TAP_SCROLL_BACKWARD = "tapScrollBackward";
SCROLL_TO_HOME = "gotoHome";
SCROLL_TO_START_OF_TEXT = "gotoSectionStart";
SCROLL_TO_END_OF_TEXT = "gotoSectionEnd";
Look at the ones you are using in 0.10.x, check the new name for those actions and rebind them in preferences->keys.
I think pageForward and pageBackward are the actions you are looking for.
To bind a key, go to tab "keys" in preferences, click on the entry to the right of label "Action for key", press the key, and select the wanted action on the dropbox that will appear below.
Then repeat for all the keys you want to bind.
They are stored in <config_path>/.FBReader/options.xml.
Here is my file:
Hope it helps,
Iņigo