Problem making game... and my first Python scritp ;-)
#1
I deleted the before message by accident (i pushed preview intead submit...) so here it's a resume:

Code:
def ShowSucesion(self):
    dialog = xbmcgui.Dialog()
    dialog.ok("ShowSucesion", "Inicio")
    mode_after = mode_
    mode_ = PLAYING
    for i in self.sucesion_:
      dialog = xbmcgui.Dialog()
      dialog.ok("ShowSucesion", "bucle for... i: %s" %i)
      self.PlayButton(i)
    mode_ = mode_after
    dialog = xbmcgui.Dialog()
    dialog.ok("ShowSucesion", "Final")

This fragment of code fails at a point between the first message and the second inside the loop (messages are not part of the code, are only my very personal debugger system Wink ). What is maybe wrong? I want to iterate a list of characters, get the char and send it to "PlayButton". I promise that with a little of help with user interface (and sound: where i can get an A, G, F and another A pure harmonic waves sound to add them to the game? :p ) and probably net scores this would be another good XBMC game... Smile (yeah, you know it and you know you want it... Wink )
Reply

Logout Mark Read Team Forum Stats Members Help
Problem making game... and my first Python scritp ;-)0