Philipp9
58 discussion posts
Hello,
is there a function for programming macros such as input.sendKeyDown for the keyboard and also a function for the mouse buttons?
Thanks and best regards
Philipp
Hey Phillip,
the BFS.VoiceBotActions namespace has functions like:
BFS.VoiceBotActions.KeyDown()
BFS.VoiceBotActions.KeyUp()
BFS.VoiceBotActions.KeyPress()
and corresponding ones for the mouse (BFS.VoiceBotActions.MouseDown, etc.)
There are some general functions in BFS.Input as well, for more complicated SendKeys stuff, and also for simpler mouse stuff, if you just want to simulate a click:
BFS.Input.SendKeyDown(),
BFS.Input.RightClickMouse(), etc.
Thanks!