Skip to content

Instantly share code, notes, and snippets.

@akcansoft
Created May 9, 2024 13:23
Show Gist options
  • Save akcansoft/53534c971919dc043c83f96a6576d7c6 to your computer and use it in GitHub Desktop.
Save akcansoft/53534c971919dc043c83f96a6576d7c6 to your computer and use it in GitHub Desktop.
AutoHotkey kodlarıyla fare tıklama-1
; AutoHotkey kodlarıyla fare tıklama-1
; https://www.youtube.com/watch?v=SBNR27E2aG8
; videosunda kullanılan kodlar
; 08/05/2024
; Mesut Akcan
; makcan@gmail.com
; youtube.com/mesutakcan
#Requires AutoHotkey v2.0
;Numpad1::Click ; sol tuş bir defa tıklama
;Numpad1::Click 2 ; sol tuş ile çift tıklama
;Numpad1::Click 5 ; 5 defa sol tuş tıklama
;Numpad1::Click 356,730,2 ; koordinatta 2 defa tıkla
;Numpad1::Click "R" ; Sağ tıklama
SendMode "Event"
CoordMode "Mouse","Screen"
;SetMouseDelay 70
Numpad1::
{
if WinExist("Hesap Makinesi")
WinActivate
else {
Run "calc"
WinWait("Hesap Makinesi")
}
Click 253,678
Click 349,728
Click 241,787
Click 352,832
Click 556,678
Click 367,775
Click 353,836
Click 556,836
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment