Hello everybody.
I have problems with uitricks and the label text Options and Back from a Form.
My source is:
Code:
# -*- coding: UTF-8 -*-
import appuifw
from key_tricks import *
import uitricks
def form_inicial():
data = [(u'Jug.1','text', u''),(u'Jug.2','text', u''),(u'Jug.3','text', u''),(u'Jug.4','text', u'')]
flags = appuifw.FFormEditModeOnly
form = appuifw.Form(data, flags)
uitricks.set_text(u'hello',EAknSoftkeyOptions)
form.execute()
form_inicial()
But when the form appears, the key Options' text is "Options", it must be "hello", mustn't it? Then, when you save the form, the Options text is "hello", but I want to show "hello" when the form is displaying
Anyone can give me an example how to use uitricks better?
I'm using PyS60 1.3.1 on a Nokia 6630
Thanks!