We are about to switch to a new forum software. Until then we have removed the registration on this forum.
Hi, how do you open an external program with processing. On older question, i saw that you had to use the open 'command', but this doesn't work anymore. I want to do it in Java.
Thanks
Answers
Well, me being stupid and not thinking that you can open an external program with java. I got it working now.
Solution: Runtime rt = Runtime.getRuntime(); rt.exec("notepad");
I just used this, and it is working.
interesting!