Kodi Community Forum

Full Version: Mouse xml help
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
hello. please bear with me as I am literally a total beginner with this stuff, and im just going off the xbmc wiki

im trying to make a xml so that I can control xbmc with the bello theme with a mouse.

here is my mouse.xml

https://drive.google.com/file/d/0B4EFWdK...sp=sharing

for some reason its not working. I am placing it in userdata/keymaps on android.
have I got something wrong in the code. I want to move left to right using the scroll buttons and up and down in general lists with the scroll click as select.

any help would be greatly appreciated. thanks
Hmm, off hand I'm not sure if XBMC on Android sees "middleclick".
hi thanks for the reply,

I am afraid even when I remove the middleclick it still does not work. any other suggestions?

thanks a lot!
I found the issue but theres another!
heres my fixed code

Quote:<keymap>

<global>
<mouse>
<leftclick>select</leftclick>
<rightclick>rightclick</rightclick>
<doubleclick id="0">doubleclick</doubleclick>
<longclick id="0">contextmenu</longclick>
<wheeldown>Down</wheeldown>
<wheelup>Up</wheelup>
<mousedrag>mousedrag</mousedrag>
<mousemove>mousemove</mousemove>
</mouse>
</global>

<Home>
<mouse>
<leftclick>select</leftclick>
<rightclick>rightclick</rightclick>
<wheelup>Left</wheelup>
<wheeldown>Right</wheeldown>
</mouse>
</Home>


<playercontrols>
<mouse>
<leftclick>select</leftclick>
<rightclick>rightclick</rightclick>
<wheelup>Left</wheelup>
<wheeldown>Right</wheeldown>
</mouse>
</playercontrols>

<fullscreenvideo>
<mouse>
<leftclick>OSD</leftclick>
<rightclick>back</rightclick>
<wheelup>Left</wheelup>
<wheeldown>Right</wheeldown>
</mouse>
</fullscreenvideo>

</keymap>


unfortunately, when I scroll down on the home menu, it registers as left command just like I wanted it to.
but - this only occurs once. if I want to move left again it does not work. only if I right click will it allow me to use the scroll wheel to move left and right again..

any help?

thanks