Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Custom delay between command
#1
IS it possible to set a custom delay time in a script? say all lines in a script execute 140 microseconds apart?
#2
All lines - no.
After keyboard and mouse functions - yes.

Code:
Copy      Help
opt.key.SleepFinally = 140;
opt.mouse.ClickSleepFinally = 140;

var w1 = wnd.find(0, "Custom delay between command - Brave", "Chrome_WidgetWin_1").Activate();
keys.send("Left Right");
keys.sendt("kkk");
mouse.click(w1, 648, 228);
mouse.click(w1, 830, 243);
mouse.click(w1, 830, 343);
#3
Thank you!


Forum Jump:


Users browsing this thread: 1 Guest(s)