0% found this document useful (0 votes)
77 views

Useful AHK Scripts

This AutoHotkey script disables Caps Lock and remaps it to Shift. It also remaps Shift to Ctrl and several other keys for use within the Blender 3D modeling software. When the Blender window is active, Caps Lock acts as Shift, Shift acts as Ctrl, and keys like A, S, X, Z are remapped for easier sculpting, modeling and navigation.

Uploaded by

Amelia Watson
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
77 views

Useful AHK Scripts

This AutoHotkey script disables Caps Lock and remaps it to Shift. It also remaps Shift to Ctrl and several other keys for use within the Blender 3D modeling software. When the Blender window is active, Caps Lock acts as Shift, Shift acts as Ctrl, and keys like A, S, X, Z are remapped for easier sculpting, modeling and navigation.

Uploaded by

Amelia Watson
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

 

#NoEnv  ; Recommended for performance and compatibility with future AutoHotkey 
releases.
; #Warn  ; Enable warnings to assist with detecting common errors.
SendMode Input  ; Recommended for new scripts due to its superior speed and reli
ability.
SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.

GroupAdd, SW, ahk_exe blender.exe

#IfWinActive, ahk_group SW   ; Only run the script if ZBrush is the active windo
w
SetCapsLockState, AlwaysOff

*CapsLock::Send {Shift down}

*CapsLock Up::Send {Shift up}

*Shift::Send {Ctrl down}

*Shift Up::Send {Ctrl up}

*`::0

*F1::9

*F2::8

*F3::6

*a::x

*d::z

*F4::-

*x::a

*e::s 

*s::y

*z::n

*q::p

You might also like