Relative Content

Tag Archive for autohotkey

How to get mouse position then copy the position into clipboard. In AutoHotKey V2

f4:: { MouseGetPos (&MouseX, &MouseY) pos:= &MouseX , &MouseY ;I want to add tooltip showing the pos, but don’t know how to A_Clipboard := “” A_Clipboard := pos Send “^c” ClipWait 2, 1 MsgBox “Copied position” } I feel like the answer is very simple, but I’ve searched around and found nothing. autohotkey New contributor […]

How to set key(tab key) to nothing using Autohotkey

Basically my tab key for some reason keeps spamming, I went to a repair shop and they couldn’t figure it out. We tried removing the key to try to fix the problem to check if maybe a crumb got left or something. I used to have the same problem with the k key. Now neither key works when I press them, they have mind of their own.

detect if ahk (autohotkey) script is running

SetTitleMatchMode, 2 DetectHiddenWindows, On UH_Yourself: if WinExist(“1UH_Yourself.ahk”) { Menu, Curar_Menu, Color, 800000 Process, Close, 1UH_Yourself.ahk Process, Close, 1UH_Yourself.ahk } else { Run, C:UsersfabriOneDriveDesktopMacrosMacros1Cura1UH_Yourself.ahk Menu, Curar_Menu, Color, 008000 } Return How do I make the script identify ahk? autohotkey New contributor Fabricio Moura Ramalho is a new contributor to this site. Take care in asking for […]