Skip to content

AGS Shell

Latest
Compare
Choose a tag to compare
@ericoporto ericoporto released this 28 Apr 19:49
· 5 commits to master since this release

Use like below

  if( System.OperatingSystem == eOSWindows ){
    ShellExecute("open", "rundll32.exe", "url.dll,FileProtocolHandler http://www.google.com");
  } else if( System.OperatingSystem == eOSLinux ){
    ShellExecute("", "", "xdg-open http://www.google.com");
  }