AutoHotkey Homepage AutoHotkey Community
Let's help each other out
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

quick question :)

 
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Ask for Help
View previous topic :: View next topic  
Author Message
Guest






PostPosted: Wed Feb 27, 2008 4:19 am    Post subject: quick question :) Reply with quote

ok well i dont know much about the program but ive been using it for the simple task of just hitting one button over and over and so far havent had to mess with it much....but atm im in need of somthing to press two buttons over and over in the same order is this possible? for example



pressing 1 2 1 2 1 2 1 2 1 2 1 2 over and over and over, is this possible to do?
Back to top
Guest






PostPosted: Wed Feb 27, 2008 4:20 am    Post subject: Reply with quote

crap i couldnt edit it, but i forgot to say, can i do this by just holding down one key...


example 121212121212121 over and over by just holding lets say 3 down. sorry for not saying that in the first post
Back to top
[VxE]



Joined: 07 Oct 2006
Posts: 1494

PostPosted: Wed Feb 27, 2008 4:25 am    Post subject: Reply with quote

Code:
3::Send 12
Razz
_________________
My Home Thread
More Common Answers: [1]. It's in the FAQ [2]. Ternary ( a ? b : c ) guide [3]. Post code inside [code][/code] tags !
Back to top
View user's profile Send private message
Guest






PostPosted: Wed Feb 27, 2008 4:30 am    Post subject: Reply with quote

[VxE] wrote:
Code:
3::Send 12
Razz


Lol is it really that simple?
Back to top
Guest






PostPosted: Wed Feb 27, 2008 4:39 am    Post subject: Reply with quote

doesnt seem to be working Sad
Back to top
hellhawk



Joined: 27 Feb 2008
Posts: 2

PostPosted: Wed Feb 27, 2008 5:15 am    Post subject: Reply with quote

ok i got my login to work, sorry about posting so many of those, couldnt edit.

i got it to work, but no theres a problem....basicly what im trying to do is on World of warcraft get it to hit 1 then 2, but im not sure if its going to fast or what or my computer just cant keep up....is there a way to set a speed for it?

for example hit 1 wait a sec hit 2 wait a sec hit 1 ect ect?
Back to top
View user's profile Send private message
dandy



Joined: 09 May 2007
Posts: 45

PostPosted: Wed Feb 27, 2008 6:03 am    Post subject: Reply with quote

Code:

#persistent

hotkey,f5,hotkey


hotkey:
send,{1 down}
sleep,50
send,{1 up}
sleep,1000
send,{2 down}
sleep,50
send,{2 up}
sleep,1000
return
Back to top
View user's profile Send private message
hellhawk



Joined: 27 Feb 2008
Posts: 2

PostPosted: Wed Feb 27, 2008 6:04 am    Post subject: Reply with quote

thanks for your help guys, i really apreciate it Very Happy !
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Ask for Help All times are GMT
Page 1 of 1

 
Jump to:  
You can post new topics in this forum
You can reply to topics in this forum


Powered by phpBB © 2001, 2005 phpBB Group