I want to remap the keyboard in the following mode:
2::ctrl
3::shift
4::alt
5::tab
My problem is that pressing at the same time 3,4,5 (equivalent to pressing alt shift tab) does not work. After investigating a little I have found that ahk can not catch some keys when being pressed together (2,3,e OR 3,4,5). Here is my code through which I have found out this
2::
tooltip 2
sleep 500
tooltip
return
3::
tooltip 3
sleep 500
tooltip
return
4::
tooltip 4
sleep 500
tooltip
return
5::
tooltip 5
sleep 500
tooltip
return
e::
tooltip e
sleep 500
tooltip
return
Anyone knows of a workaround to catch multiple key presses (like 2,3,e OR 3,4,5) ?
Thanks !