Open() app
in
Programming Questions
•
3 months ago
Hello,
I try to open app from processing, but nothing happen when I do that. The target app is a processing app. I use P 2b9, on mac Lion.
Maybe I miss something in my code...
Thx for your help
Stan
I try to open app from processing, but nothing happen when I do that. The target app is a processing app. I use P 2b9, on mac Lion.
- void setup()
{
size(300,300 ) ;
}
void draw()
{
}
void mousePressed()
{
// open("targetAPP.app") ;
open("/Users/stanislasmarcais/Desktop/CODE/Fonction Processing/INTERFACE : AFFICHAGE/SauvegardeChargement/OpenApp/data/targetAPP.app") ;
}
Maybe I miss something in my code...
Thx for your help
Stan
1