Sorry if the topic title sounds vague.
Well, basically I want to remap a key to click the mouse at a specific coordinate, but whenever I hold down the remapped key AutoHotkey will make repeated mouse clicks instead of holding the mouse button down.
I looked at the help file and found SetMouseDelay which is supposed to solve my problem, but apparently it only works with the LButton command, and I can't assign a coordinate to LButton.
Here's an example of how my script looks like:
Code:
a::Click 44, 55
SetMouseDelay -1
return
AutoHotkey ignores SetMouseDelay completely.
I know this is a dumb problem, but I couldn't find anything at the help file.