Using launch() to start chrome.exe

Firefox is in a different location on my W10 Processing 4.4.6 PC:

String url = "https://www.howtogeek.com/";

String[] args = {
  "C:\\Program Files\\Mozilla Firefox\\firefox.exe",
  url
};
launch (args);

The above works!

:)

1 Like