How would I get this command to send a key plus a variable?
Simba Code:Procedure CreateAccount;
begin
wait(RandomRange(2000,3000));
MMouse(384, 395, 5, 5);
ClickMouse2(1);
wait(randomrange(1000,2000));
Mouse(274,148,5,5,1);
SendKeys('17', 25, 2);
PressKey(13);
SendKeys('*****************+x', 25, 2);
PressKey(13);
wait(500);
SendKeys('*****************+x', 25, 2);
PressKey(13);
SendKeys('123456789', 25, 2);
PressKey(13);
SendKeys('123456789', 25, 2);
end;
I want x to increase everytime it is called, how do I use it with sendkeys?
Ex) It creates the email *********+1, where 1 = x, so how do I make it increase X everytime it completes the cycle? so next time it will be ********+2 for the email and so on?



Reply With Quote



