Processing Ajax...

Title

Message

Confirm

Confirm

Confirm

Confirm

Are you sure you want to delete this item?

Confirm

Are you sure you want to delete this item?

User Image
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.
Aug 22, 2021  • #1
Owen Muhlethaler (BFS)'s profile on WallpaperFusion.com
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!
Aug 24, 2021  • #2
User Image
Oh Guru70003
4 discussion posts
Thanks for a lightining reply bro. The answer to your question is quite simple. I do not know scripting and how to use it. ;)
Aug 25, 2021  • #3
Owen Muhlethaler (BFS)'s profile on WallpaperFusion.com
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!
Aug 27, 2021  • #4
User Image
Oh Guru70003
4 discussion posts
Marvelous, thanks again Owen. Really appreciate that:)
Sep 16, 2021 (modified Sep 16, 2021)  • #5
Subscribe to this discussion topic using RSS
Was this helpful?  Login to Vote(1)  Login to Vote(-)