01-28-2024, 11:36 AM
Is there a way to trigger hotkeys only at right or left modifier keys (Ctrl / Win etc.)?
I tried so far the following but the trigger is activated on right and also on left control key:
var hk = Triggers.Hotkey;
hk["RCtrl+Left"] = o => {
print.it($"{o} was pressed.");
};
hk["RCtrl+Right"] = o => {
print.it($"{o} was pressed.");
};
Could anyone give me a hint please?
I tried so far the following but the trigger is activated on right and also on left control key:
var hk = Triggers.Hotkey;
hk["RCtrl+Left"] = o => {
print.it($"{o} was pressed.");
};
hk["RCtrl+Right"] = o => {
print.it($"{o} was pressed.");
};
Could anyone give me a hint please?