I would swap it, since you'll likely do page turns a lot more than you would do history, make the button click a pageturn, but hold for history. You can do this by in the XML replacing this section
<boolean key="0x31" do="doLeft"/>
<boolean key="0x31-hold" do="doPrevious"/>
<boolean key="0x30" do="doRight"/>
<boolean key="0x30-hold" do="doNext"/>
With this
<boolean key="0x31" do="doPrevious"/>
<boolean key="0x31-hold" do="doLeft"/>
<boolean key="0x30" do="doNext"/>
<boolean key="0x30-hold" do="doRight"/>
Thanks for the article Bob.
|