Quick answers to the questions readers send most often. Each one links to the page that covers the topic in depth.
A free scripting language for Windows used to build hotkeys, expand text, remap keys and automate repetitive desktop tasks. The overview page explains it in full.
Yes, and on Windows 10. Behavior is the same on both; individual applications, not the OS version, cause most differences.
v2 uses a consistent expression syntax with quoted text, function-style calls and thrown errors. v1 scripts need converting before they run under v2.
The .ahk extension. A script is a plain text file saved with that ending.
Write the key combination, two colons, then the action, such as ^!n::Run "notepad.exe".
Another program may own the combination, the target window may be elevated while the script is not, or the key name may be spelled incorrectly.
The language itself is a normal Windows program. Treat scripts like any other code: read what a downloaded file does before running it, since a script can type, click and change files.
Yes, with Click and MouseMove, though keystroke-based paths are more reliable than fixed coordinates.
People searching for autokey usually mean AutoHotkey; AHK is the common short form of the same tool.