Thread: Midi <-> OSC
View Single Post
Old 11-18-2017, 10:09 AM   #81
fundorin
Banned
 
Join Date: Feb 2014
Location: Moscow, Russia
Posts: 554
Default

This one works:
Code:
match (msg2, sprintf(#dest, slSlider1)) ? (
This one doesn't:
Code:
match (msg2, sprintf(#dest, "slSlider%d", 1)) ? (
I kinda understand the reason why it isn't working (slSlider1 becomes a string "slSlider1", while msg2 becomes a string "16", so they don't match), but can't figure out how to fix that. Any help would be appreciated.

Last edited by fundorin; 11-18-2017 at 10:31 AM.
fundorin is offline   Reply With Quote