AHK not typing things correctly

Get help with using AutoHotkey (v1.1 and older) and its commands and hotkeys
Neunistiv Zemlja
Posts: 1
Joined: 11 Apr 2021, 11:50

AHK not typing things correctly

Post by Neunistiv Zemlja » 06 Dec 2021, 19:11

Code: Select all

!Numpad0::
Send, "Hi! What are you looking for today?"
return
In theory, this should print the string: "Hi! What are you looking for today?"
Instead, it prints this:
"Hie you looking for today?"
Can anyone find what's wrong here?

--b0ro

User avatar
mikeyww
Posts: 26972
Joined: 09 Sep 2014, 18:38

Re: AHK not typing things correctly

Post by mikeyww » 06 Dec 2021, 19:53

Code: Select all

!Numpad0::SendInput {Text}"Hi! What are you looking for today?"
Explained: Send (see table of symbols! ! ! !)

Post Reply

Return to “Ask for Help (v1)”