After I updated to a new release (1194), my plugin stopped working. I'we managed to get to the point, that I can't call another action anymore in the way BitMonster has told me lot of time ago.
Isn't working anymore:
Code: Select all
class MenuExecute(eg.ActionClass):
name = "Execute"
description = "Triggers an event associated with current menu item."
iconFile = 'icons/enter'
def __call__(self):
self.plugin.info.actions["Close"]()
Code: Select all
class MenuExecute(eg.ActionClass):
name = "Execute"
description = "Triggers an event associated with current menu item."
iconFile = 'icons/enter'
def __call__(self):
eg.plugins.OSMenu.Close()
So, what could be the correct calling of action?