This is something that I think should be simple but I can't seem to get it to work. I want to map Shift-R to Option-R in a particular application (FL Studio.) In all my attempts with BetterTouchTool, it still sends the Shift-R shortcut.
I was able to achieve it in Karabiner but I'd rather use this BetterTouchTool. : { "title": "FL Studio Specific Shortcuts", "rules": [ { "description": "Shift+R to Option+R in FL Studio only", "manipulators": [ { "type": "basic", "from": { "key_code": "r", "modifiers": { "mandatory": ["shift"], "optional": ["caps_lock"] } }, "to": [ { "key_code": "r", "modifiers": ["option"] } ], "conditions": [ { "type": "frontmost_application_if", "bundle_identifiers": ["^com.image-line.flstudio$"] } ] } ] } ] }