1

I'd like to assign some shortcut in MAC OS X. But I want to limit to Left Alt only. When I'm assigning it now, both alts do work.

How do I limit it for one side only?

slhck
  • 223,558
  • 70
  • 607
  • 592
ryskajakub
  • 65
  • 1
  • 7
  • I'm afraid this might not be possible natively, but check this topic, you may have better results! http://superuser.com/questions/55954/is-there-a-good-app-for-key-bindings-and-key-macros-on-mac-os-x – lovethebomb Apr 15 '13 at 10:50

1 Answers1

2

You can use KeyRemap4MacBook to assign them to some unused key combinations first:

<autogen>__KeyToKey__ KeyCode::A, ModifierFlag::OPTION_L | ModifierFlag::NONE, KeyCode::F19, ModifierFlag::COMMAND_L</autogen>

Without | ModifierFlag::NONE ⌃⌥A would also be changed to ⌃⌘F19.

See the source for the key code values and predefined settings.

Lri
  • 40,894
  • 7
  • 119
  • 157