Help - Search - Members - Calendar
Full Version: Wierd Script Help
AC Tools Everything Macro > AC Tool Macros > Macro Development
Cryzies
Heres what I've got

while 1=1
keys {TAB} // this can be any hotkey you set
delay 1 sec
keys {SPACE}
delay 1 sec // set the pause to your liking
end



But I want it to "tab space tab space" so overall I want it to "tab space" 6 times then "tab space (x9)" then "tab space" 13 times

get it? xP

Basically
tab space tab space tab space tab space tab space tab space tab space space space space space space space space space space tab space tab space tab space tab space tab space tab space tab space tab space tab space tab space tab space tab space tab space tab



=) thx
Ahk
You can use the regular loop to do this, I didn't follow what you wanted because they looked like different things..


from this I mean:

But I want it to "tab space tab space" so overall I want it to "tab space" 6 times then "tab space (x9)" then "tab space" 13 times...should mean that all you have is tab space a ton of times, and no different anywhere. But below that you said tab space tab space a few times, followed by a bunch of spaces.

I'm wasting time, so you know what you want, put them in loops like so:
CODE
Loop 6
  Keys {Tab}
  Keys {Space}
End


Cryzies
Ok thanks
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Invision Power Board © 2001-2010 Invision Power Services, Inc.