Hi @ll,
I'm very new to python and I try to write a little "Favorite-Program" for my 5800 XM.
In this little Prog I wanted to put in a list with a few apps I've installed on my 5800 XM and a few Things that I wanted to start with only 1 or 2 Touches from the active-standby. Only start my app and then touch on prog x and ready
I also wanted to start the speed-dial and the wlan-assistent and 1 or 2 apps. I've installed a Python Programms called "FreiMinMon" and I found a listing to search Z: (and edited to find also on Con my phone but there wouldn't every app listed, which is installed on the phone?
How can I found this installed (and well working apps) to start them in my program?
Also how can I start the speed-dial and the wlan-assistent?
Anybody can help me?
Best regards Mike
Here is my actual very simple "program":
Code:# Active-Standby-Tool import appuifw, e32 L = [u'Profimail', u'X-Plore', u'BTSwitch', u'Woerterbuch', u'Neustart'] index = appuifw.selection_list(choices=L , search_field=1) if index == 0: e32.start_exe('c:\\system\\apps\\ProfiMail.exe','',1) if index == 1: e32.start_exe('c:\\system\\apps\\X-Plore.exe','',1) if index == 2: e32.start_exe('c:\\system\\apps\\BTSwitch.exe','',1) if index == 3: e32.start_exe('z:\\system\\apps\\mobiledictionary.exe','',1) if index == 4: appuifw.note(u"Restart","conf",1) e32.start_exe(u'z:\\system\\programs\\sysstart.exe','',0) else: appuifw.app.set_exit()


Reply With Quote


