run this and tell me what it says in the debug box
then we can figure out exactly where its going wrong
SCAR Code:
program New;
{.include srl/srl.scar}
Procedure ClickOnExistingUserButton;
Begin
writeln('debug4');
Mouse(375, 187,1,1,true)
writeln('debug5');
Wait(1000+random(2000))
writeln('debug6');
WriteLn('Clicked Existing User Button')
end;
Procedure TypeInUserandPass;
Begin
writeln('debug8');
TypeSend('username') //username here
writeln('debug9');
wait(1000+Random(2000))
writeln('debug10');
TypeSend('password') //password here
end;
Procedure ClicktoPlay;
Begin
writeln('debug12');
Mouse(384, 430,1,1,true)
writeln('debug13');
wait(2000+Random(3000))
end;
begin
writeln('debug1');
SetupSRL;
writeln('debug2');
ActivateClient;
writeln('debug3');
ClickOnExistingUserButton;
writeln('debug7');
TypeInUserandPass;
writeln('debug11');
ClicktoPlay;
writeln('debug14');
end.
~shut