Saltar al contenido

ejemplo de código del tutorial de autohotkey

Ejemplo 1: envío ahk

Send Sincerely,{enter}John Smith  ; Types a two-line signature.
Send !fs ; Select the File->Save menu (Alt+F followed by S).
Send {End}+{Left 4} ; Jump to the end of the text then send four shift+left-arrow keystrokes.
SendInput {Raw}A long series of raw characters sent via the fastest method.

Ejemplo 2: teclas de acceso rápido autohotkey

#^!s:: ;This occurs when pressed Windows Button+Control+Alt+s
Send Sincerely,{enter}John Smith  ; This line sends keystrokes to the active (foremost) window.
return

Ejemplo 3: autohotkey

toggle = 0
#MaxThreadsPerHotkey 2

F8::
    Toggle := !Toggle
    While Toggle{
        Click
        sleep 100
    }
return
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)



Utiliza Nuestro Buscador

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *