Kodi Community Forum

Full Version: Kodi add on stuck with "waiting" message
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
All,

I am trying to add a very simple plugin to my kodi

Version:

default.py code is: Starting Kodi (14.2 Git:20150326-7cc53a9). Platform: Windows NT x86 32-bit

import xbmc, xbmcgui

#get actioncodes from https://github.com/xbmc/xbmc/blob/master...ilib/Key.h
ACTION_PREVIOUS_MENU = 10

class MyClass(xbmcgui.Window):
def onAction(self, action):
if action == ACTION_PREVIOUS_MENU:
self.close()

mydisplay = MyClass()
mydisplay .doModal()
del mydisplay


when starting the plugin from the programs menu, I see an empty screen (expected), but a "waiting" message is running on the right bottom of the screen.

How do I get remove this message?
any idea?