Page 1 of 1

ACTools HELP

Posted: December 2nd, 2004, 2:04 pm
by tault_skippiie
if anyone is familiar with actools. can you please code something for me real quick?

all i need the macro to do is press these keys automatically. and repeat the whole sequence over and over until i hit a certain key. CTRL + ` .. or something

Tab
1
2
3
4

... thats all. can someone do that plz? .. also, where do i download actools?

Posted: July 6th, 2005, 8:41 pm
by cmpolis
I havent used actool for a while, but it should be something like:

bool pressCtrl=true
while(pressCtrl){
key_press "1"
key_press "2"
etc...
onKeyPress"CTRL"(
pressCtrl=false
)
}

You should also put in some sleep commands so it doesnt do all that code at one time.