Oh Guru70003
4 discussion posts
Hi guys,
is there a way I can create a looping macro...like an auto-refresh I
know I can set it to Press and release F5 and then set a delay of 10000
ms band copy the same again and again....but I want it to loop instead
or repeat after some time. How do I do it without a script ? Any help
will be greatly appreciated.
Hello,
Unfortunately there's no way to do this without using a script. Is there any particular reason why you don't want to use a script?
Thanks!
Hello,
Not a problem, if you paste this into a custom script, it should do the job for you:
using System;
using System.Drawing;
public static class VoiceBotScript
{
public static void Run(IntPtr windowHandle)
{
while (true);
{
BFS.Input.SendKeyDown("{VK_116}");
BFS.Input.SendKeyUp("{VK_116}");
BFS.General.ThreadWait(100000);
}
}
}
Hope that helps!