how can I use number keys in top of keyboard just for special characters like (@#$)without pressing shift key to use that. -for example when pressing num2 key just show @ I search about that just understand can do that with AutoHotkey but I don't find script to do that, actually is not problem. I just want use numeric key Which are located at the top of keyboard use that just for specials characters.
31 Answer
An AutoHotkey script that does that is very simple:
2::@Repeat this for the other keys on the upper keyboard row.
Note that the numpad numeric keys will still keep their values, so numpad2 will still give "2" and not "@".
0