Mind Path Technologies Pocket Point RF Remote in Acroread/Others (on Linux)
May 24th, 2006
I’m hoping that someone else has a better solution for this one. We have a pocketpoint remote that works quite well for Power point presentations, but for Acrobat Reader the keybinding is not good. The remote sends p for prior/previous and n for next, which is understood by powerpoint and not by Adobe. I wrote the following lame script to fix this. It works for the most part, but you lose the p and n keys during the presentation.
#!/bin/sh
xmodmap -e 'keycode 33 = Prior'
xmodmap -e 'keycode 57 = Next'
acroread &
wait
xmodmap -e 'keycode 33 = p'
xmodmap -e 'keycode 57 = n'


