[T3] 2.4GHz and IR Air Mouse Remote Control
#3
Hi Jeffers24

I can confirm that the T3 remote mouse does not reactivate itself once turned off. (Unlike the similar looking MX3 remote)

What user were doing for the MX3 remote to overcome the mouse continually reactivating itself was to put the following code in their keymaps file in Kodi. What the code does is effectively turns the mouse off in Kodi but still allows the use of the left and right click (However this only works while in Kodi)

To do this open Notepad copy the below code into it and save it as an XML file. ie "Mouse.xml".
Then place the file into you Kodi keymaps folder inside the userdata folder.
In Windows it is located C:\Users\(Your Compute Name)\AppData\Roaming\Kodi\userdata\keymaps. (Maybe different for other platforms)

I still use this code for the T3 as i have no need for a mouse pointer in Kodi but like the use of the left and right mouse buttons. I could just turn the mouse pointer off on the T3 by pressing the mouse On/Off Button and the pointer is permanently disabled. But once the mouse is turned off the "OK" Button becomes "Enter" instead of Left Click and the Return Arrow becomes "ESC" instead of Right Click.


<?xml version="1.0" encoding="UTF-8"?>

<!-- Button Ids: -->
<!-- 0: left -->
<!-- 1: right -->
<!-- 2: middle -->
<!-- 3/4/5/6: extra -->

<keymap>
<global>
<mouse>
<leftclick>Select</leftclick>
<rightclick>Back</rightclick>
<middleclick>noop</middleclick>
<doubleclick id="0">noop</doubleclick>
<longclick id="0">noop</longclick>
<doubleclick id="1">noop</doubleclick>
<longclick id="1">noop</longclick>

<wheeldown>noop</wheeldown>
<wheelup>noop</wheelup>

<mousemove>noop</mousemove>

<mousedrag>noop</mousedrag>
<mousedragstart>Select</mousedragstart>
<mousedragend>noop</mousedragend>

<mouserdrag>noop</mouserdrag>
<mouserdragstart>Back</mouserdragstart>
<mouserdragend>noop</mouserdragend>
</mouse>
</global>

<FullscreenVideo>
<mouse>
<leftclick>OSD</leftclick>
<mousedragstart>OSD</mousedragstart>
</mouse>
</FullscreenVideo>

<Visualisation>
<mouse>
<leftclick>OSD</leftclick>
<mousedragstart>OSD</mousedragstart>
</mouse>
</Visualisation>

<SlideShow>
<mouse>
<leftclick>Pause</leftclick>
<rightclick>PreviousMenu</rightclick>
<wheelup>PreviousPicture</wheelup>
<wheeldown>NextPicture</wheeldown>
</mouse>
</SlideShow>

</keymap>
Reply


Messages In This Thread
RE: [T3] 2.4GHz and IR Air Mouse Remote Control - by dasco - 2016-06-13, 01:59
power button - by thenry - 2017-03-26, 14:43
Logout Mark Read Team Forum Stats Members Help
[T3] 2.4GHz and IR Air Mouse Remote Control3