Left Key equivalent
- Last UpdatedJul 26, 2024
- 1 minute read
The following elements can be specified for a Left Key equivalent animation link.
|
Elements |
Description |
|---|---|
|
KeyCode |
Virtual key code name or empty string. Required. An empty string means no assignment occurs. |
|
KeyFlags |
Virtual key flag combination or empty string. Required. An empty string means no assignment occurs. Disabled if no KeyCode is specified. |
Example for "CTRL+B":
<LeftKey>
<KeyCode>B</KeyCode>
<KeyFlags>Ctrl</KeyFlags>
</LeftKey>
Example of a No Key Flag Modifier for "L":
<LeftKey>
<KeyCode>L</KeyCode>
</LeftKey>
Example of a Both Key Flag Modifiers for CTRL+SHIFT+F7:
<LeftKey>
<KeyCode>F7</KeyCode>
<KeyFlags>CtrlShift</KeyFlags>
</LeftKey>