Processing Ajax...

Title
Close Dialog

Message

Confirm
Close Dialog

Confirm
Close Dialog

Confirm
Close Dialog

User Image
DannyHoHo
2 discussion posts
Hi, im trying to transfer my Dragon naturally speaking VB Macro scripts to be able to implement into Voicebot.

its just simple Sendkeys and waits, but it doesnt seem to work.

When i verify the function, everything checks out.

i dont want to have to map everything out again because i have over 100 of these little sendkey macros from Dragon that i want to import into Voicebot

what can be done?
• Attachment [protected]: Capture 2.PNG [24,591 bytes]
• Attachment [protected]: Capture.PNG [28,557 bytes]
May 30, 2018  • #1
Thomas Malloch (BFS)'s profile on WallpaperFusion.com
Our SendKeys implementation doesn't support shortcuts to press a key multiple times, so you have to specify each key press yourself. Here's some code that should work for you:

Code

BFS.Input.SendKeys("{F3}{F3}{F3}8{ENTER}");
BFS.General.ThreadWait(1000);
//For this one, I'm not sure if you wanted shift held down for all 4 of the key presses. If you don't, just remove the parenthesis 
BFS.Input.SendKeys("+({TAB}{TAB}{TAB}{TAB})999");
BFS.Input.SendKeys("{TAB}{TAB}{TAB}");


I hope this helps!
Jun 1, 2018  • #2
User Image
DannyHoHo
2 discussion posts
Thank you Thomas, this works :)

ohhh mannn so that means i would have to type out all those multiple keys individually.

but at least this gives me a start on how to handle this type of coding.

I find it quite fun doing this, ive never done any coding before....and i use it mainly for work. all the repetitive keystrokes that i do for work, i just use my voice. productivity increased by like 30%.

i love Voicebot, use it everyday :)
Jun 4, 2018  • #3
Subscribe to this discussion topic using RSS
Was this helpful?  Login to Vote(1)  Login to Vote(-)