Convert fader to keystroke

Patch

2009-07-17 21:09:16

Is there a translator to convert a fader to a repeat keypress? IE:

Move fader up =repeatedly press +
Move fader down = repeatedly press -

Cheers,
-Pat.

florian

2009-07-22 23:40:18

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

Patch

2009-07-24 18:43:49

Thanks Forian - really appreciate the help!