Hi, I'm a newbie!
!
I've a problem with appuifw.Listbox() function.
Example:
Code:
import appuifw
appuifw.app.title = u'mSoftware'
icon1 = appuifw.Icon(u"\mrestore.mbm", 0, 1)
icon2 = appuifw.Icon(u"\mrestore.mbm", 2, 3)
def primo_tasto():
appuifw.note(u"Selezionato PRIMO", "info")
def secondo_tasto():
appuifw.note(u"Selezionato SECONDO", "info")
entries = [(u"Primo", primo_tasto),
(u"Secondo", secondo_tasto)]
lb = appuifw.Listbox(entries, handler)
I don't understand what is "handler"??
And why the code doesn't work??
Sorry for the bad english

thank you