I've made a simple autotyper on Simba, but I get an error:
Here's the script I have so far:Code:[Error] (7:13): Invalid number of parameters at line 6 Compiling failed.
Simba Code:program AutoTpyer;
procedure Wait;
begin
Wait(2000);
end;
procedure Typing;
begin
SendKeys('Your Text Here', 1);
KeyDown(13);
KeyUp(13);
Wait(500);
end;
begin
Wait
repeat
Typing
until(false);
end.



Reply With Quote









