ckermo
2017-09-11 16:57:18
So here's my problem. I have perfectly working translators for controlling track volume in Ableton live, using the Mac keyboard's keystrokes, with relative ccs. Great.
Now I would like to use the same volume keytrokes on different tracks, by deciding, through a variable, which track is active. So I set up a translator with a simple rule and no outgoing action: na=0, na=1 etc. to show which track should receive the cc.
[x] Translator 1.0: New Translator Incoming: Physical Keys: Num 1 Rules: na=0 Outgoing: (none)
[x] Translator 1.1: New Translator Incoming: Physical Keys: Num 2 Rules: na=1 Outgoing: (none)
Then I use a rule inside my Volume traslators to skip outgoing action if the track is not the right one. Here's one of the translator :
[x] Translator 1.5: Vol Looper 1 UP Incoming: Key down: Num + Rules: if na!=0 then exit rules, skip Outgoing Action Outgoing: Periodic timer "Up Timer 1": 50 ms (initial delay: 0 ms)
[x] Translator 1.6: Fader UP Incoming: On timer "Up Timer 1" Outgoing: MIDI B0 28 06 B0 29 01 B0 2A 04 B0 32 56 B0 33 4F B0 34 4C B0 35 2B B2 78 01, to ports Bome MIDI Translator 1 Virtual Out, "SSCOM : Port 1 (KESUMO, LLC)"
[x] Translator 1.7: Key Release Incoming: Key up: Num + Rules: Outgoing: Kill timer "Up Timer 1"
[x] Translator 1.8: Vol Looper 1 DOWN Incoming: Key down: Num - Rules: if na!=0 then exit rules, skip Outgoing Action Outgoing: Periodic timer "Down Timer 1": 50 ms (initial delay: 0 ms)
[x] Translator 1.9: Fader Down Incoming: On timer "Down Timer 1" Outgoing: MIDI B0 28 06 B0 29 00 B0 2A 04 B0 32 56 B0 33 4F B0 34 4C B0 35 2D B2 78 41, to ports Bome MIDI Translator 1 Virtual Out, "SSCOM : Port 1 (KESUMO, LLC)"
[x] Translator 1.10: Key Release Incoming: Key up: Num - Rules: Outgoing: Kill timer "Down Timer 1"
Again, don't waist time analyzing the relative cc part of the translator, it's working great, nothing to correct. Only question is how to make it understand that the variable na's value has changed.
There's probably some very simple step missing, but can't figure out which one ;)
Thanks for your help !