Vitja
2013-10-05 21:59:09
Hi!
I'm newbie here, and I don't know much about Translator. I did some simple things, but now I need some help to solve some
problems I have with global variables.
So, what I want to do:
I remaped my computer keyboard(external) to use it like simple MIDI controller for some MIDI Program Changes and some Ableton Live shortcuts.
Here is my problem:
I want keys 1,2,3,4,5,6,7,8,9,0, to send me a specific Program Change. So I made 10 translators. Very simple.
Now I want to use another Key (like a modifier (shift)), to turn all 10 keys into another bank of Program Changes.
I tried to specify a Right_Shift as global variable:
Right_Shift down
Right_Shift Up
I mad a new translator to first key (1) to work only when shift is down
with rules:
and then MIDI out PC.
and I add rules to translator which should work only when shift is up.
But nothing works.
I know... I'm really starting with this.
Any help would be very appreciated!
Thanx!
I'm newbie here, and I don't know much about Translator. I did some simple things, but now I need some help to solve some
problems I have with global variables.
So, what I want to do:
I remaped my computer keyboard(external) to use it like simple MIDI controller for some MIDI Program Changes and some Ableton Live shortcuts.
Here is my problem:
I want keys 1,2,3,4,5,6,7,8,9,0, to send me a specific Program Change. So I made 10 translators. Very simple.
Now I want to use another Key (like a modifier (shift)), to turn all 10 keys into another bank of Program Changes.
I tried to specify a Right_Shift as global variable:
Right_Shift down
Code: Select all
gc=1
Code: Select all
gc=0
with rules:
Code: Select all
if gc==1 then exit rules, execute Outgoing Action
if gc==0 then exit rules, skip Outgoing Action
and I add rules to translator which should work only when shift is up.
Code: Select all
if gc==1 then exit rules, skip Outgoing Action
if gc==1 then exit rules, execute Outgoing Action
I know... I'm really starting with this.
Any help would be very appreciated!
Thanx!