.listSendMsg / array values OSC

hi, im looking for perhaps a light example of how to use effectively the.listSendMsg/.sendRaw,
im trying to send some values in an array over OSC
thanks

myAddr.sendMsg(\hello, 123);

myAddr.listSendMsg([\hello, 123]);

Or:

var iHaveAMsgInAnArray = [\hello, 123];

myAddr.listSendMsg(iHaveAMsgInAnArray);

myAddr.sendMsg(*iHaveAMsgInAnArray);

All of these should end up sending the same message.

Iā€™d avoid using sendRaw unless you are sure you know how to format OSC messages manually.

hjh

1 Like

thank u for this!
do u think it is poissible to send .plotter information via OSC?
i.e send waveform shapes?