View Single Post
Old 07-12-2011, 01:11 AM   #10
jeromedevine
Zealot
jeromedevine doesn't litterjeromedevine doesn't litterjeromedevine doesn't litter
 
Posts: 110
Karma: 240
Join Date: Sep 2009
Device: Kindle 3 3G Graphite, Sony PRS-505
I found out that the 'Alt' button code is 56.

I amended the code and replaced 194 with 56 like as it is underneath but it didn't work:

#!/bin/sh

#let's use some helpers
_FUNCTIONS=/etc/rc.d/functions
[ -f ${_FUNCTIONS} ] && . ${_FUNCTIONS}
#big loop
while true; do
{
#wait for center key
if waitforkey 56 ; then
next_page
#wait a while to prevent from turning too many pages at once
sleep 1
fi
}
done





Then in the .ini file I amended so:


[Actions]
;; pageturnforward1
P A = !sh /mnt/us/pageturnforward1 &


After I renamed the 'pageturnforward' file to 'pageturnforward1' (also I amended the .ini file by including '1' after filename) so that I would still have the pageturnforward script available as well. I amended as well the keys to press and changed it from P P to P A

Can anyone hint me what I am doing wrong for it not to work?
jeromedevine is offline   Reply With Quote