Skip to content

Instantly share code, notes, and snippets.

@akcansoft
Created May 9, 2024 13:21
Show Gist options
  • Save akcansoft/d95a39b9ca8c3b7f1095fdeb46c183fe to your computer and use it in GitHub Desktop.
Save akcansoft/d95a39b9ca8c3b7f1095fdeb46c183fe to your computer and use it in GitHub Desktop.
Ctrl+Farenin sol tuşu ile tıklanan konumu panoya kopyalar
; Ctrl+Farenin sol tuşu ile tıklanan konumu panoya kopyalar
; 08/05/2024
; Mesut Akcan
; makcan@gmail.com
; youtube.com/mesutakcan
; ilgili video: https://www.youtube.com/watch?v=SBNR27E2aG8
#Requires AutoHotkey v2.0
#SingleInstance Force
SetTimer KoordinatGoster,200
CoordMode "Mouse","Screen"
A_Clipboard :=""
;Çıkış için ESC
Esc::ExitApp()
; Ctrl+Sol fare tuşu konumu oanoya kopyala
^LButton::
{
global x,y
A_Clipboard .= "Click " x "," y "`n"
Click
}
KoordinatGoster()
{
global x,y
MouseGetPos &x, &y
CoordMode "ToolTip"
ToolTip x "," y , x+10,y+18
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment