So far, one has to use:
Code: Select all
url$="http://marcoagpinto.cidadevirtual.pt/proofingtoolgui.html"
CompilerSelect #PB_Compiler_OS
CompilerCase #PB_OS_Linux
RunProgram("xdg-open",url$,"")
CompilerCase #PB_OS_Windows
RunProgram(url$)
CompilerCase #PB_OS_MacOS
RunProgram("open", url$, "")
CompilerEndSelect
Why not a command?