OSC: Tidal and Processing

Ok will keep playing and let you know. Thanks so much anyways for your help

Hiya, somehow got it working just rebooted and re installed everything... success!

I'm now trying to change this with processing values:

d1 $ splice 30 "0 1 4 2" $ s "air"

and wanted to change the splice, so put:

d1 $ splice (cF 0 "hello") "0 1 4 2" $ s "air"

which receives an error message. Does cF only work with certain parameters then?

1 Like

I think your issue may be that splice takes an Integer Pattern rather than a Float Pattern as the first argument. If you use cI instead of cF, you won't get that error.

d1 $ splice (cI 0 "hello") "0 1 4 2" $ s "air"

I'm not sure if that's enough to get it working or not. If it has no error, but it's still not having an effect, you might also have to change the float to int in your Processing sketch.

2 Likes