Hi!
I’m trying to communicate between iannix and Maxmsp. I can send osc from Iannix to Max but cannot do vice versa.
I think I made it correct in Max but nothing showed up or happened in Iannix.
`function onIncomingMessage(protocol, host, port, destination, values) {
if((protocol == “osc”) && (destination == “/iannix/stop” )) {
run(“stop”);
}
if((protocol == “osc”) && (destination == “/iannix/play” )) {
run(“play”);
}
}
I wrote these in the script. Anything wrong here?