Hi all,
Scrollbar moves but the listbox view remains static on my 5530 using the following script in 1.9.7. The underlying screen mapping is correct though; for example if I move the scrollbar all the way to the bottom and touch the lowest item on the screen ('item 05'), it changes to 'item 10' once highlighted, but the remainder of the screen is still unrefreshed.
Am I missing something?Code:import appuifw, e32 items = [ u"Item 01", u"Item 02", u"Item 03", u"Item 04", u"Item 05", u"Item 06", u"Item 07", u"Item 08", u"Item 09", u"Item 10" ] lb = appuifw.Listbox(items, lambda:None) appuifw.app.body = lb def quit(): app_lock.signal() appuifw.app.exit_key_handler = quit app_lock = e32.Ao_lock() app_lock.wait()
thanks in advance

Reply With Quote




