Author Topic: Thoughts on using your own .dll  (Read 1955 times)

MonkeyMagic75

  • Newbie
  • *
  • Posts: 8
Thoughts on using your own .dll
« on: November 03, 2020, 04:53:30 AM »
Hi all,
The more 'coding' I do on VA, the more im thinking its best to create your own .dll to handle the heavy lifting...thoughts?
VA is awesome tho.

Pfeil

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 4759
  • RTFM
Re: Thoughts on using your own .dll
« Reply #1 on: November 03, 2020, 10:01:02 AM »
Press F1 while VoiceAttack has focus to open VoiceAttackHelp.pdf in your default PDF viewer.

That is possible, yes.

If you are familiar with .NET (I would personally recommend C#, though VB.NET can also be used) you can write inline functions (that can either be compiled on-the-fly, or to a .dll and then called), or plugins (which must be precompiled to a .dll and called using the "Execute an External Plugin Function" action).

The "VoiceAttack Plugins (for the truly mad)" section of the documentation describes these features.

Users also share their plugins and inline functions on this forum, and others can be found using a search engine.

MonkeyMagic75

  • Newbie
  • *
  • Posts: 8
Re: Thoughts on using your own .dll
« Reply #2 on: November 03, 2020, 01:53:03 PM »
Awesome, thank you.