florian
2011-12-31 11:05:29
A user asked:
how can you create translators on keystroke combinations like Shift+Ctrl+D ?
how can you create translators on keystroke combinations like Shift+Ctrl+D ?
florian
2011-12-31 11:05:29
florian
2011-12-31 11:08:28
Code: Select all
Translator 0: Shift Down
Incoming: Keystroke Down "Shift"
Rules: gs = 1
Outgoing: None
Translator 1: Shift Down
Incoming: Keystroke Down "Shift"
Rules: gs = 0
Outgoing: None
Translator 2: Control Down
Incoming: Keystroke Down "Control"
Rules: gc = 1
Outgoing: None
Translator 3: Control Up
Incoming: Keystroke Up "Control"
Rules: gc = 1
Outgoing: None
Code: Select all
Translator 4: Shift+Control+D
Incoming: Keystroke "D"
Rules:
if gs==0 then exit rules, skip outgoing action
if gc==0 then exit rules, skip outgoing action
Outgoing: MIDI 90 40 7F
orchesterwart
2012-01-04 21:37:26
Code: Select all
Translator 0: Shift Down
Incoming: Keystroke Down "Shift"
Rules: gs = 1
Outgoing: None
Translator 1: Shift Up
Incoming: Keystroke Down "Shift"
Rules: gs = 0
Outgoing: None
Translator 2: Control Down
Incoming: Keystroke Down "Control"
Rules: gc = 1
Outgoing: None
Translator 3: Control Up
Incoming: Keystroke Up "Control"
Rules: gc = 0
Outgoing: None