
Originally Posted by
dnastase
Hi,
Does anybody know what you need to do in order to get the right soft button say "Done" when executing a form ?
Right now it says "back", and the soft left button is "Options" where "Save" is the only option.
In the phone's settings I see a lot of forms that have "Done" button so there must be a way to get it.
Thanks,
Daniel
Try this ...
put uitricks.pyd and key_tricks.py to !\system\libs
And now add this to your code
Code:
from key_tricks import *
import uitricks
# 'Back' becomes 'Done' ...
uitricks.set_text('Done',EAknSoftKeyBack)
# return to default ...
uitricks.set_text('Done',EAknSoftKeyBack)
# 'Options' left soft key display become 'Python' !
uitricks.set_text('Python',EAknSoftKeyOptions)
binary uitricks module (1st and 2nd pys60 only !)
key_tricks.py
I don't try the code but I think it would have to work fine !