Hi all,
I'm trying to send MIDI CC values to some effects that I have mapped in Ableton.
For example I am sending this message to effect a Bit Reduction effect.
d1 $ ccn "120*128" # ccv (range 127 40 $ slow 2 saw) # s "als"
I would like to do a few things here, namely encapsulate this in something more shorthand, and be able to use the whenmod function so that these messages are only sent at certain points over the course of a song/pattern.
I've named this snippet "redux" by doing this and it evaluates fine without using 'whenmod'
let redux = ccn "120*128" # ccv (range 127 40 $ slow 2 saw) # s "als"
d1 $ redux
What I am looking to do is essentially something like:
d1 $ whenmod 8 7 (# redux)
I'm having a bit of trouble achieving an effect like this. Does anyone have any insight into what I'm missing here?
I've also tried:
d1 $ whenmod 8 7 ($ redux)
d1 $ whenmod 8 7 (redux)
Thanks in advance!
mike