I am having trouple getting SCAR to type a message into RS all it will do is type the message where the cursor is currently in SCAR, I have selected the RS window using the crosshair tool but it still types into SCAR. Please Help :P
program GhostAutoTalker;
const
message1='Hello';
procedure Typer;
begin
SendKeys(message1);
end;
begin
repeat
Typer;
Wait(5000)
until(False)
end.

