Tibout
Tibout

Reputation: 23

Remap key combination (steelseries keyboard)

Within the steelseries engine it is very easy to change the basic key functionality. But I can not find an option to change what happens when you press a modifier key like 'shift' + that specific key.

I was wondering if anyone knows either a way of doing this in Steelseries engine, or another way perhaps using AHK or something of the sort?

Upvotes: 0

Views: 2004

Answers (1)

Zack Tarr
Zack Tarr

Reputation: 861

It depends on what you are trying to do with the key binding. But yes you can capture shift+ another key with the syntax below.

+A::
MsgBox, Shift A was pressed!
return

+B::
Send, Shift B was pressed!
Return

To see a full list of the modifier hotkeys and the symbol to use for each you can look at Hotkeys

Upvotes: 1

Related Questions