IncredibleVolk
Technical User
I have a loop that cycles through the same command 150 times. Is there a way I can increment the number of times the <TAB> key is entered (0x09) for each pass of the loop? In other words, I'd like it to start with 1 tab, then 2 tabs, and so on...
while Counter != 150
termvkey 0x09
pause 2
fetch aspect path pathname
strcat pathname filename2
snapshot FILE Name APPEND
strcat command pathname
run command
pause 3
Counter++
endwhile
while Counter != 150
termvkey 0x09
pause 2
fetch aspect path pathname
strcat pathname filename2
snapshot FILE Name APPEND
strcat command pathname
run command
pause 3
Counter++
endwhile