CapsLock::Send, {Ctrl Down}{Shift Down}{Shift Up}{Ctrl Up}This script remaps the CapsLock key to the Ctrl + Shift combination for switching the input language.
- After running the script, you can switch the language by pressing CapsLock instead of the default Ctrl + Shift shortcut.
#UseHook
; For PrintScreen without modifiers
<#>+F21:: ; LWin + RShift + F21
Send, {PrintScreen}
Return
; For Ctrl + PrintScreen
<^<#>+F21:: ; LCtrl + LWin + RShift + F21
Send, ^{PrintScreen} ; Ctrl + PrintScreen
Return
; For Alt + PrintScreen
<!<#>+F21:: ; LAlt + LWin + RShift + F21
Send, !{PrintScreen} ; Alt + PrintScreen
Return
; For Shift + PrintScreen
<+<#>+F21:: ; LShift + LWin + RShift + F21
Send, {ShiftDown}{PrintScreen}{ShiftUp} ; Shift + PrintScreen
ReturnThis script is intended for Microsoft Bluetooth Keyboard and remaps the Search key to the PrintScreen function with support for different key modifiers.
- PrintScreen without modifiers — press LWin + RShift + F21.
- Ctrl + PrintScreen — press LCtrl + LWin + RShift + F21.
- Alt + PrintScreen — press LAlt + LWin + RShift + F21.
- Shift + PrintScreen — press LShift + LWin + RShift + F21.
- Install AutoHotkey version 1.1.
- Save the
change_language_by_caps.ahkandremap_find_to_prntscr.ahkfiles. - Run the scripts by double-clicking or add them to startup.
These scripts simplify standard keyboard shortcuts and improve comfort when using your keyboard.