Launch() with additional Parameters

Is Processing able to handle Launch strings with added parameters such as the example below?

This is a path copied from a program shortcut:

“C:\Program Files (x86)\Navigator19\PC_Navigator\PC_Navigator.exe” --atlas=‘C:\ProgramData\Navigator\19.3\atlas_pcn.idc’

What I have tried based on my best search in this forum, but it still does not work:

launch(("C:/Program Files (x86)/Navigator19/PC_Navigator/PC_Navigator.exe") + "--atlas='C:/ProgramData/Navigator/19.3/atlas_pcn.idc'");

Figured it out with some Google searches.

should be:

launch("path", "parameters");
1 Like