AutoHotKey Commands

Published: 2020-04-05, Updated: 2023-01-22

Links

Basic Examples

j & k::
; digita um texto
Send, My First Script
; abre box com texto
MsgBox, Hello World

; clica mouse 
Send, {Click, down, right}
Sleep 2000
; solta click mouse
Send, {Click, up, right}

; aperta letra k
Send, {k, down}
Sleep 10
; solta letra k
Send, {k, up}

CTRL + WIN + T

#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 reliability.
SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.

^#t::  Winset, Alwaysontop, , A

Reference

auto hotkey


Postgres Backup Instruções Assembly

Comments