Hello, how you probably found with the title of my topic I'm not very good coding level but I try to improve myself, I explain.
I would like with the option Script macro creates a while loop and can exit this loop by pressing a key for example, unfortunately it does not work or so I put wrong, can you help me please?
using System;
using System.Drawing;
public static class VoiceBotScript
{
public static void Run(IntPtr windowHandle)
{
while(BFS.Input.SendKeys("j") )
{
//press the "F" key
BFS.Input.SendKeys("f");
BFS.General.ThreadWait(100);
}
}
}
This is a example.
Or if it is possible to do the loop without coding I am also a taker
Thank you in advance for your answer (sorry my english is not very good )