Astaroth Posted June 8, 2008 Posted June 8, 2008 Can someone tell me how to send for ex. "hello!" when I press the H key? Is there a way to do that in autoit? Thanks in advance.
James Posted June 8, 2008 Posted June 8, 2008 HotKeySet() and Send() Blog - Seriously epic web hosting - Twitter - GitHub - Cachet HQ
monoceres Posted June 8, 2008 Posted June 8, 2008 Hi! Please look in the help file in the future as this is answered there. But I am going to provide you with an example HotKeySet("h","_SendHello") Do SLeep(10) ;blabla Until 1+1=3 Func _SendHello() HotKeySet("H") Send("hello") HotKeySet("H","_SendHello") EndFunc Broken link? PM me and I'll send you the file!
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now