2013-05-05, 06:11
so I'm using a set top android mini-pc. I want to change what the "right click" does though. I edited Mouse.xml to the following:
and when I try this out on my PC XBMC version, it works fine. But in Android, the right click keeps behaving as the global "back" button... is there any way to change this? thanks in advance for any advice or pointers in the right direction!
Code:
<keymap>
<global>
<mouse>
<leftclick>leftclick</leftclick>
<middleclick>middleclick</middleclick>
<rightclick>rightclick</rightclick>
<doubleclick>doubleclick</doubleclick>
<wheeldown>wheeldown</wheeldown>
<wheelup>wheelup</wheelup>
<mousedrag>mousedrag</mousedrag>
<mousemove>mousemove</mousemove>
</mouse>
</global>
<SlideShow>
<mouse>
<leftclick>Pause</leftclick>
<rightclick>OSD</rightclick>
<wheelup>PreviousPicture</wheelup>
<wheeldown>NextPicture</wheeldown>
</mouse>
</SlideShow>
</keymap>
and when I try this out on my PC XBMC version, it works fine. But in Android, the right click keeps behaving as the global "back" button... is there any way to change this? thanks in advance for any advice or pointers in the right direction!