Author Topic: Bringing in a command from Web Site  (Read 4176 times)

blueknight

  • Newbie
  • *
  • Posts: 14
Bringing in a command from Web Site
« on: October 16, 2017, 01:38:57 PM »
So I am trying to build an extensive VA profile for Elite. One of the things that I am trying to do is create a voice attack for navigating, and was wondering if there was a way you can push down a voice command with the actual words that you are looking for from the web.

Meaning have a particular voice command grab the config to it at start from the web. That way I would not have to push a new profile all the time when things are updated.

Example: New locations, etc.

Pfeil

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 4760
  • RTFM
Re: Bringing in a command from Web Site
« Reply #1 on: October 16, 2017, 02:19:45 PM »
You can retrieve text from a web address using the "Value from file/URI" feature of the "Set a Text Value" action.

If you have access to a URL and a web server, you could host text files and have your profile retrieve those.

In theory you can also retrieve a webpage directly, but you'd have to parse the file to filter out all the html tags so you'd only get the content.


To add commands dynamically(so your user can speak the identifier for the new data), you'd need something like this concept.

blueknight

  • Newbie
  • *
  • Posts: 14
Re: Bringing in a command from Web Site
« Reply #2 on: October 17, 2017, 12:34:03 PM »
Thank you for the link... that is exactly what I am looking for.