script (program) fails at doModal
#1
Exclamation 
first of all I really love this skin.
I have written an addon (script.program....) which worked in confluence-skin so far but now fails at do modal in general it does:

PHP Code:
import xbmcgui
import sys
import xbmcaddon

__addon__ 
xbmcaddon.Addon()

class 
MyClass(xbmcgui.Window):
  
def __init__(self):
    
logging.info('init called')

[...]

MyClass()
W.doModal()
del W 

and the script fails/hangs at the .doModal() call. The purpose of this script is to have a little interface with a floorplan and buttons allowing me to control the blinds.

I cannot get this working anymore. I see the interface loading already in background of the screen but it keep at doModal() - line while screen displays "please wait..." infinitely

I hope someone could help?
Reply
#2
is this issue specific to the re-touched skin?

are you perhaps trying to open this window while a dialog is visible?
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

Logout Mark Read Team Forum Stats Members Help
script (program) fails at doModal0