I’m a java developer and need some buttons to have switched cases.
As example:
[should be{and vice versa, SHIFT{ should be[(Because I need{more often than[)-
9should be(and vice versa SHIFT( should be9- I’ve tried some variations, but all stacked in recursion, any ideas?
- I have duplicated button \ on my keyboard + symbol \ in other layout. How can i assign different actions on each of them?
Romale,
Try to see if this will work.
Here I can only test this with one \ key. You might have to use the +[lowercase char] to address the second .
Alternatively you can try to find the ScanCode of each key. You do that with right-clicking on the AHK Icon, then select [Open], the in the Application press [Ctrl]+k. now press one \ and then [F5]. Then press the other \ and [F5] again.
The ScanCodes are in the second column.
If you want to act on the ScanCodes (e.g. SC 165), you use the following:
Or if you want to do more…
Regards.