Well I've talked to Freddy already and reported it as a bug in his site.
I can't get scar to press any keys in this simple script:
SCAR Code:
Program New;
{.include srl/srl.scar}
procedure First;
begin
if IsKeyDown('1') then
begin
Writeln('Debug 2');
SendKeys('r');
Writeln('Debug 3');
Keydown(114);
Writeln('Debug 4');
KeyUp(114);
Writeln('Debug 5');
Wait(10);
Writeln('Debug 6');
Keydown(114);
Writeln('Debug 7');
KeyUp(114);
Writeln('Debug 8');
Wait(10);
Writeln('Debug 9');
end;
end;
begin
SetupSRL;
Repeat
First;
until(false);
end.
can you?
Try it out please, just hold down one and see if it types in "r".
--
Hugo