View Single Post
Old 08-21-2008, 09:41 AM   #158
JSWolf
Resident Curmudgeon
JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.
 
JSWolf's Avatar
 
Posts: 79,887
Karma: 146918083
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
Quote:
Originally Posted by JSWolf View Post
I do have a new feature you can drop into 0.05. For those who like the joypad for turning pages and do not use the mp3 player functionality, they may prefer to have the volume buttons be page turns instead and the history can be left alone. Also, make the page turns on the left history as well so when you have the joypad as page turns, you can have the left side page turns as history.
Code:
			<boolean key="0x41" do="doPrevious"/>
			<boolean key="0x41-hold" do="doFirst"/>
			<boolean key="0x40" do="doNext"/>
			<boolean key="0x40-hold" do="doLast"/>
That is for changing the volume to be page turns.

Code:
			<boolean key="0x31" do="doLeft"/>
			<boolean key="0x31-hold" do="doFirst"/>
			<boolean key="0x30" do="doRight"/>
			<boolean key="0x30-hold" do="doLast"/>
This is the code for changing the lower right page turn circle button to be history.

Code:
			<boolean key="0x41" do="doLeft"/>
			<boolean key="0x41-hold" do="doLeft"/>
			<boolean key="0x40" do="doRight"/>
			<boolean key="0x40-hold" do="doRight"/>
This hack should make the volume be history in case the circle button is not wanted as history.

Now if someone would not mind testing these to see if I got them right.
JSWolf is offline   Reply With Quote