Posts: 83
Threads: 26
Joined: Aug 2019
IS it possible to set a custom delay time in a script? say all lines in a script execute 140 microseconds apart?
Posts: 12,288
Threads: 144
Joined: Dec 2002
06-04-2026, 06:18 PM
(This post was last modified: 06-04-2026, 06:24 PM by Gintaras.)
All lines - no.
After keyboard and mouse functions - yes.
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);
Posts: 83
Threads: 26
Joined: Aug 2019