Hi,
yes, the only difficulty is to track the direction:
Code: Select all
Translator 1: upward
Incoming: MIDI B0 01 pp
Rules:
if g0>=pp then exit rules, skip outgoing action
g0=pp
Outgoing: Keystroke: +
Translator 2: down
Incoming: MIDI B0 01 pp
Rules:
if g0<=pp then exit rules, skip outgoing action
g0=pp
Outgoing: Keystroke: -
Now a problem might become if you move the fader fast, it'll jump values. You can check out the "Frontier Design Tranzport" project file that ships with Midi Translator. E.g. the Winamp preset takes care of such jumps in the fader values by using a timer.
Regards,
Florian