Swapping mouse buttons
#8
A couple of quick comments:

1. I advise creating a separate .xbmc/userdata/keymaps/mouse.xml to hold mouse mappings. XBMC doesn't actually care what the files are called and reads every XML file it finds in the keymaps directory. However keeping mouse mappings ina separate file makes them easier to maintain.

2. To just swap the mouse buttons you can use:

Code:
<keymap>
  <global>
    <mouse>
      <rightclick>leftclick</rightclick>
      <leftclick>rightclick</leftclick>
    </mouse>
  </global>
</keymap>
Reply


Messages In This Thread
Swapping mouse buttons - by rockyjones - 2009-12-17, 21:16
Snap - by lkingscott - 2010-06-11, 22:16
[No subject] - by corcaigher - 2011-04-04, 14:18
Left handed mouse support - by corcaigher - 2011-05-28, 14:06
More info - by lkingscott - 2011-10-08, 00:07
[No subject] - by jhsrennie - 2011-10-08, 09:54
RE: Swapping mouse buttons - by jinxdone - 2012-05-09, 07:49
RE: Swapping mouse buttons - by jhsrennie - 2012-05-09, 10:21
RE: Swapping mouse buttons - by jinxdone - 2012-05-09, 22:53
Logout Mark Read Team Forum Stats Members Help
Swapping mouse buttons0