Hi Ruben
This should be doable, but you'll need to use a combination of variables and separate translators to send it out. What we need to do is create a translator for just the shift key which sets a global variable, and then a translator for the L key which only triggers when the Shift key is held. It should look something like:
Code: Select all
Translator 1: Ctrl Key
Incoming Message: Keystroke Ctrl; Key Down Action
Rules: g0=1
Outgoing Message: None
Translator 2: Ctrl Key
Incoming Message: Keystroke Ctrl; Key Up Action
Rules: g0=0
Outgoing Message: None
Translator 3: Backspace Key
Incoming Message: Keystroke Backspace; Key Action
Rules: if g0!=1 then exit rules, skip outgoing action
Outgoing Message: <whatever you want>
Make sense?
Jared