I need a script that will do the following:
Type:
/ then a number that increments each loop from 0-12
And repeats.
I need a script that will do the following:
Type:
/ then a number that increments each loop from 0-12
And repeats.
so you want it to do this?:
[code]
/0/1/2/3/4/5/6/7/8/9/10/11/12/0/1/2/3/4/5/6/7/8/9/10/11/12
etc?
SCAR Code:program New;
{.include SRL\SRL.scar}
var
i: Integer;
begin
repeat
for i := 0 to 12 do
TypeSend('/' + IntToStr(i));
until(False);
end.
I believe that should tickle your fancy.
Or If you don't want SRL in it just do this
SCAR Code:Program New;
var
i : integer;
begin
repeat
for i := 0 to 12 do
begin
sendkeys('/' + inttostr(i) + chr(13));
wait(70);
end;
until(isfkeydown(9));
end.
That will keep repeating it until you press F9.
There are currently 1 users browsing this thread. (0 members and 1 guests)