Hi:
It’s me again, one year later. 😉 I can’t solve yet the sintaxis of this line to assign a MIDI message from Processing to a Iannix cursor. I copied:
iannix.send(“setmessage”, “selection”, “0,”, “midi://midi_out/ccf”, 1, 1, “cursor_value_x”);
So I understand to change it like this:
iannix.send(“setmessage”, 1, 20, “midi://midi_out/ccf”, 1, 1, “cursor_value_x”);
But Processing said it’s wrong:
“Method it’s not applicable”
So, obviously it has to do with the string or float or int in the argument…
But which parameter is wrong ?
I can do it thru the script editor
run(“setMessage 1 20, midi://midi_out/” + “ccf” + ” 1 2 cursor_value_y”);
and it works fine but I reaaaally do need to make it thru P55:
Please help me !!!