how to set teh keystroke translator?

JayHH

2009-04-15 11:18:04

with my bcf2000 i want to push a button. while pushing (on data 127) a keystroke "shift+1" as long as i hold the button. when i release (data 0) the keystroke should be switched of.

first the "1" should be switch off, then after the "shift" has to be switched of.

how to programm this?

thanks in advance

ruediger

2009-04-20 10:10:53

Hi JayHH,

Code: Select all

Translator 0 :New Translator
Options: swallow
Incoming: MIDI B0 6D 7F
Outgoing: Keystroke: Shift(1 )

Translator 1 :New Translator
Options: swallow
Incoming: MIDI B0 6D 00
Outgoing: Keystroke: Shift(1 )
This may help you. If you press the controller button, you get an Note on message (or anything else, here I use another button). If you release the button you get a Note Off message. In both cases I activate the Shift-1.

Hope that helps.

Cheers,
RĂ¼di

JayHH

2009-04-20 18:19:38

thanks a lot.

the same i can do with rules;)

i did understand.

ruediger

2009-04-20 20:43:14

no problem :)