Quote:
Originally Posted by JSWolf
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.