Does anyone knows how to send a command line for skype in mac?
in
Programming Questions
•
3 years ago
Hi!
i want to make a processing sketch that opens my "Skype.app" and the call me, i used "open()" function to do it but i don't how to pass the command linesDoes anyone have tryed this?
void setup() {
size(200, 200);
}
void draw() {
// draw() must be present for mousePressed() to work
}
void mousePressed() {
String[] params = { "/Applications/Skype.app"};
open(params);
}
/nosplash - do not display splash screen when Skype starts
/minimized - Skype is minimized to system tray when it starts
/callto:nameornumber - call the specified Skype Name or SkypeOut number
/shutdown - close Skype /secondary - allows you to start an additional skype.exe instance
thanks,
Rodrigo
1