is there a way to change
#1
Hi is there a way to change the right key to be a enter key while in a addon like with a executebuiiltin() if so could you please leave an example
Reply
#2
You'll have to be a bit more precise than that. I'm not quite sure what your wanting this fore. The cursor right key is used quite much in navigating through Kodi. How would you otherwise browse through Kodi without that right key?
Reply
#3
python:
def onAction(self, action):
    if action.getId() == ACTION_MOVE_RIGHT:
        executebuiiltin('...')

https://codedocs.xyz/xbmc/xbmc/group__py...002b029c75
Do not PM or e-mail Team-Kodi members directly asking for support.
Always read the Forum rules, Kodi online-manual, FAQ, Help and Search the forum before posting.
Reply
#4
the action is not for kodi nav but a nav in a addon, i have a vertical list, and on just that list the right key is the  enter key like how sky uk navigates there menu

for example i have

elif action.getId() == 1:
            self.close()

elif action.getId() == 2:
            #action to enter  the menu
Reply
#5
(2019-04-07, 01:31)ronie Wrote:
python:
def onAction(self, action):
    if action.getId() == ACTION_MOVE_RIGHT:
        executebuiiltin('...')

https://codedocs.xyz/xbmc/xbmc/group__py...002b029c75

Nice One Ronie just need to know how to make it perform the action enter where you have the executebuiiltin('...')
Reply

Logout Mark Read Team Forum Stats Members Help
is there a way to change0