Setting the application's title
#Setting the application's title
import appuifw, e32
#Define the exit function
def quit():
app_lock.signal()
appuifw.app.exit_key_handler=quit
#The title must be in unicode
appuifw.app.title=u"MyApplication"
app_lock=e32.Ao_lock()
app_lock.wait()