I am trying to make a script that sends a pound instead of a dollar when you hold Shift and quickly press 4.
Has anyone seen any code that does such things?
EDIT: Ok, I saw the documentation and I managed to detect a double shift of + 3, as shown below:
Shift & 4::
if (A_PriorHotkey <> "Shift & 4" or A_TimeSincePriorHotkey > 400)
{
KeyWait, 4
return
}
Send, £
return
But he cannot get him to send $ for some reason. Any ideas?
source
share