Code: Select all
CompilerIf #PB_Compiler_OS = #PB_OS_MacOS
RunProgram("open","http://www.google.com/","")
CompilerElseIf #PB_Compiler_OS = #PB_OS_Windows
RunProgram("http://www.google.com/")
CompilerEndIf
Code: Select all
CompilerIf #PB_Compiler_OS = #PB_OS_MacOS
RunProgram("open","http://www.google.com/","")
CompilerElseIf #PB_Compiler_OS = #PB_OS_Windows
RunProgram("http://www.google.com/")
CompilerEndIf
Code: Select all
RunProgram("/usr/bin/open", URLEncoder("https://www.google.com/"), "")