Bryan
2007-09-08 19:58:01
Short of defining 127 translators, can I program a MIDI key to do the same thing regardless of velocity? For now, I'm using velocity 0--key up--but would prefer to have the macro occur on key down.
Bryan
2007-09-08 19:58:01
Bryan
2007-09-08 20:42:45
florian
2007-09-10 15:23:16
Code: Select all
TRANSLATOR 1: translate Note On
INCOMING: MIDI IN 90 40 pp
RULE: IF pp = 00 THEN "exit rules, do not execute this outgoing action"
OUTGOING: <what you need>
Code: Select all
TRANSLATOR 1: swallow note off
Stop Processing: checked
INCOMING: MIDI IN 90 40 00
OUTGOING: none
TRANSLATOR 2: translate Note On
INCOMING: MIDI IN 90 40 pp
OUTGOING: <what you need>
Bryan
2007-09-10 17:07:23
frivo
2007-09-25 20:18:39
florian
2007-09-26 21:47:51