Code: Select all
clip1 := "cerveza"
sleep 400
url := "http wwww.google.es /q=" . clip1
Code: Select all
clip1 := "cerveza"
sleep 400
url := "http wwww.google.es /q=" . clip1
Code: Select all
^3::
Random, rnd, 1, 6
ToolTip, Sended Right %rnd% time(s)
Send, {Right %rnd%}
Return
Code: Select all
#SingleInstance, force
CoordMode,Mouse, Relative
SetTimer, mouse_position, 1000
return
mouse_position:
if WinActive("ahk_exe msedge.exe"){
MouseGetPos, xpos, ypos
if (xpos <= 20 and ypos <= 20)
Send, {F9}
}
Return
Code: Select all
::bb::buenos días Sr
Code: Select all
::bd::buenos días{enter}
::bb::buenos días Sr
Code: Select all
WB.document.getElementsByTagName("select")[3].selectedIndex := 3
Code: Select all
WB.document.getElementsByTagName("select")[3].value := "300"
Code: Select all
XButton2::Send, 9
XButton1::Send, 0
Code: Select all
enviarE:
SendInput, {e}
Return
Code: Select all
enviarE:
ControlSend, , {e}, ahk_exe notepad.exe
Return