We are about to switch to a new forum software. Until then we have removed the registration on this forum.
I want to open an external program with proccesing (.EXE). It just needs to be started. On older posts people were talking about using an open function, but Processing says that it doesn't exist (the links to the refernce library are also not working).
Answers
import java.util.*; import java.io.*;
Runtime rt;
int exitVal;
void setup() {
rt = Runtime.getRuntime();
try {
}
catch(Exception e) {
}
}
void draw() { }
Apparently, open() has been replaced with launch().