Hi,
Firstly i have read all the previous posts but to no avail.
I simply want to open the browser from my python script. I can connect to my wifi no problem. here is my script.
Somebody else posted this and said it workled. Im really stuck with this. Any help appreciated.Code:import e32 import os import socket ap_id = socket.select_access_point() apo = socket.access_point(ap_id) socket.set_default_access_point(apo) path = 'z:\\System\\Apps\\Browser\\Browser.app' apprun = 'z:\\system\\programs\\apprun.exe' def open(url): apprun_arg = path + ' "' + url + '"' e32.start_exe(apprun,apprun_arg, 1) open("http://www.google.co.uk") print "done"
I also tried webbrowser, i would prefer to use it this way though.
Thanks

Reply With Quote

