Greetings ! I’m experimenting with OpenMusic, OSC, and VCV Rack. Messaging has been successful, but I have a question about formatting a particular kind of OSC message. I have two message generators that use the LISP List operator, one of which creates a message like this:
("/trowacv/ch/1" 1.0)
the other creates a message like this:
("/trowacv/ch/2" 2.0)
I want to combine the two messages in a bundle formatted like this:
(("/trowacv/ch/1" 1.0) ("/trowacv/ch/2" 2.0))
for use with OSC-Send. Unfortunately I haven’t figured out how to do it. Using x-append creates the following message:
("/trowacv/ch/1" 1.0 “/trowacv/ch/2” 2.0)
which gets me close but not close enough. Can someone suggest a simple solution ?
Thanks in advance !
Dave Phillips