Switch application to foreground in pys60
1 2 import appswitch 3 print appswitch.switch_to_fg(u"Menu")
Updated (19 Oct 05)
==================
Now it can
- listing running applications
- switching them to foreground/background
- closing/killing apps
1 2 # listing 3 apps = appswitch.application_list(True) # true = include all 4 # false = no hidden apps 5 print apps 6 7 # to background and closing 8 print appswitch.switch_to_bg(u"TODO") 9 print appswitch.end_app(u"TODO")