Hi people,
the title says it all:
The user manual of my program is an HTML document, and I want the OS's default browser to open it directly once the user clics on help.
The function that the help menu entry invokes is this:
os.popen("/usr/local/firefox/firefox ./html/index.html")
Now this only works on Linux and because I know where the firefox executable is. Is there a way of calling the default browser? And how would I do it on Windows?
Remember that I want the function to call the browser and also tell it what file it should open.
Thanks in advane