Modal dialog delegate actions to window
#1
I have a modal dialog open and react to some actions but other actions I want to send to "fullscreenvideo" window.

xbmc.executebuiltin("Action("+str(action.getId())+",12005)") doesn't work because it expects action name not number.

How can I do this?
Reply
#2
I found the proper way to do this, but still doesn't work:

def onAction(self, action):
win = xbmcgui.Window(12005)
win.onAction(action)
Reply
#3
you must put the above code inside the window class and make sure you put self as a param
def onAction(self,ActionID)
Reply

Logout Mark Read Team Forum Stats Members Help
Modal dialog delegate actions to window0