AutoHotKey Commands

Published: 2020-04-05, Updated: 2023-06-18

AutoHotKey Commands

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

metadata={"id": 666, "createdAt": "2020-04-05 04:17:56.947249", "updatedAt": "2023-01-22 01:58:36.498945"}


Postgres Backup Instruções Assembly

Comments