Hello friends!! Okay, this should be really simple, but I'm having a tough time. I am trying to create an autovoice command where the profile recognizes "launch" or "open" and then an app name. The task then uses autolaunch to launch that app. I am having trouble with the profile. I currently have autovoice Recognize: Command: "(launch|open) (?<appname>.+) Test in autovoice: "launch play music" However, when I run this task I get %appname = "launch" but I want %appname = "play music" Help? Adam
You have 2 options: Recommended: Use the Easy Way and set the filter to launch $appname,open $appname and you're good to go Use regex but you have to name every group in the regex. In your case it would be (?<command>launch|open) (?<appname>.+) Hope this helps!