Im working on my first script, an auto login in script, after it clicks log in it doesn't type my user name but goes right to my password, any help would be greatly appreciated.
SCAR Code:program Auto;
{.Include SRL\SRL.scar}
Procedure login;
begin
ClickMouse(-236, -291, True)
Wait(1000)
end;
Procedure Start;
begin
TypeSend('username');
Wait(1500)
Typesend('password');
end;
begin
SetUpSRL;
Activateclient;
login;
Start;
end.


Reply With Quote




