Kodi Community Forum
Identifying unknown onAction ID's - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Development (https://forum.kodi.tv/forumdisplay.php?fid=32)
+--- Forum: Add-ons (https://forum.kodi.tv/forumdisplay.php?fid=26)
+--- Thread: Identifying unknown onAction ID's (/showthread.php?tid=220270)



Identifying unknown onAction ID's - Enigma0 - 2015-03-03

So I've got two separate elements (not really relevant) that are both receiving clicks, nav, etc but I am seeing an influx of 107 and 243 on each and I'm not sure what they are. They always come in an alternating fashion.

I don't believe I'm doing anything on the user side to trigger them and they are likely internal given the rapid frequency (more than 20 in a second).

Any way to identify what they are? Something like this: http://kodi.wiki/view/Action_IDs that correlates them to their numerical value.


RE: Identifying unknown onAction ID's - GavinCampbell - 2015-03-04

I know 107 is the mouse moving. Not sure about 243.


RE: Identifying unknown onAction ID's - Enigma0 - 2015-03-04

Ah ok thanks. Just speculation but perhaps one is movement in x, other is movement in y?


RE: Identifying unknown onAction ID's - GavinCampbell - 2015-03-04

There are different numbers for left right up down. Check out this link. The Action ID's are at the bottom.

http://mirrors.xbmc.org/docs/python-docs/14.x-helix/xbmcgui.html


RE: Identifying unknown onAction ID's - Enigma0 - 2015-03-04

(2015-03-04, 00:58)GavinCampbell Wrote: http://mirrors.xbmc.org/docs/python-docs/14.x-helix/xbmcgui.html

Oh perfect that's the kind of resource I've been looking for, thanks a ton.