Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - sticker592

Pages: [1]
1
Feature Requests / Add the ability to disable individual commands.
« on: April 14, 2020, 05:39:59 AM »
I could put all commands I want to disable into a folder but I'd rather also have the option to disable a single command without messing up the folder structure. In particular vox commando keeps turning itself off. I want to just disable the command without deleting it.

2
Feature Requests / Re: Be more like Autovoice
« on: April 14, 2020, 05:38:34 AM »
yes, I know you can manually define them. It's just kindof neat.

3
It's now appearing on more and more commands. It will not send any keys after recognizing the command. What could be the cause of this? Is there a way to debug it? It will consistently not send the keys and then something will change and the next day the same command will send the keys.

4
Feature Requests / Be more like Autovoice
« on: April 12, 2020, 10:16:29 AM »
Less important feature request: Tasker has natural language processing from google built in. So you say an autovoice command like hello, hi, howdy and they all activate a task started by hello. Might be worth looking into the MS azure NLP capabilities.

5
To answer my second question, there were some example chrome commands I found so the path can only contain the exe and the site + search parameter has to be constructed as a payload. Not sure why I didn't try that already.

6
I have autohotkeys set to focus on vox commando and potplayer. (I couldn't get the vc focus to work) For some reason after adding the voxcommando focus hotkey, the potplayer no longer send the keys when the command is activated. Why?

Code: [Select]
<?xml version="1.0" encoding="utf-16"?>
<!--VoxCommando 2.2.4.0-->
<command id="158" name="focus {1}" enabled="true" alwaysOn="False" confirm="False" requiredConfidence="0" loop="False" loopDelay="0" loopMax="0" description="">
  <action>
    <cmdType>Window.Focus</cmdType>
    <params>
      <param>{1}</param>
    </params>
    <cmdRepeat>1</cmdRepeat>
  </action>
  <if ifBlockDisabled="False" ifNot="False">
    <ifType>{1}</ifType>
    <ifParams>==&amp;&amp;PotPlayer</ifParams>
    <then>
      <action>
        <cmdType>InputKeys.Send</cmdType>
        <params>
          <param>{SHIFT+CONTROL+ALT}({F})</param>
        </params>
        <cmdRepeat>1</cmdRepeat>
      </action>
    </then>
    <else />
  </if>
  <if ifBlockDisabled="False" ifNot="False">
    <ifType>{1}</ifType>
    <ifParams>==&amp;&amp;voxcommando</ifParams>
    <then>
      <action>
        <cmdType>InputKeys.Send</cmdType>
        <params>
          <param>{SHIFT+CONTROL+ALT}({V})</param>
        </params>
        <cmdRepeat>1</cmdRepeat>
      </action>
    </then>
    <else />
  </if>
  <phrase>focus</phrase>
  <payloadList>PotPlayer, notepad,Kodi,firefox,voxcommando,mediamonkey,chrome</payloadList>
</command>

WHen I refactor it into a separate command, it works, but I'm posting here in case it's a bug. vc 2.2.4.0
Also, when I click the history check box, now I don't see the events history as I believe activated it before. Any ideas why?

Same thing happened with the following script. When it was alt right, the keys didn't send but UP did:
Code: [Select]
<?xml version="1.0" encoding="utf-16"?>
<!--VoxCommando 2.2.4.0-->
<command id="649" name="volume up" enabled="true" alwaysOn="False" confirm="False" requiredConfidence="0" loop="False" loopDelay="0" loopMax="0" description="">
  <loop>
    <loopParams>
      <from>1</from>
      <to>{1}</to>
    </loopParams>
    <loopActions>
      <action>
        <cmdType>InputKeys.Send</cmdType>
        <params>
          <param>{ALT}({RIGHT})</param>
        </params>
        <cmdRepeat>1</cmdRepeat>
      </action>
    </loopActions>
  </loop>
  <phrase>volume up</phrase>
  <payloadRange>1,10</payloadRange>
</command>
---
I also am converting the payload searches to chrome from ie, but I can't pass in the command line arguments to chrome. I can launch.openfile chrome.exe but launch.openfile path/chrome.exe https://google.com/search?q={1} doesn't work. How can I pass in the parameter.

7
I have installed the plugin and setup kodi, but I didnt select the kodi config at vc install time. Where can I find and copy the xml kodi commands for 18 into vc?
---
It won't let me delete this but the xml's are under support plugins on the forum:
https://voxcommando.com/forum/index.php?topic=2480.0
---
I reinstate my question, the commands on the forum are not the same as on the youtube demos. Please them unless reinstalling kodi is required to access necessary kodi actions.

8
Or limit the edit parameter helper in the LCB to options relevant to the action selected immediately to the left.

9
Feature request: Maybe when you have time you could add support to just detect the keys input and fill in the keycodes like some programs do. Then allow the user to manually adjust it if necessary.

10
unrelated, the event history in vox commando shows Device arrived.537.5 and Device Removed.537.5 when the connect disconnect sound on my pc goes off. I have been trying to figure out what is causing it and Nirsoft's 2 usb viewer software products and several others show nothing but vox commando does. Can I extract from the history event any more info about what is connecting?

11
I see. Dumb naming by MS. Please do add PGUP/PGDN as aliases. Really you should remove mssapi altogether and use GOOGLE for everything by default via api calls. The server which I assume somehow is making the api calls for free often disconnects and should be replaced with a genuine api key that I would pay for.

12
Are you sure? See attachmed screen shot.

---
Add {PGUP}{PGDN} as aliases as well as lots of old posts with apparently previous codes will confuse users: https://voxcommando.com/forum/index.php?topic=2444.0

I spent an entire evening last night trying to get this to work and it was only a trivial variable name error that took 2 seconds to fix.

13
Ok, you should replace those with the valid .NET keycodes in the key selector (the icon in the LCB with three blocks). While I'm here, I have a feature request: Allow LOOPs within IFs. Otherwise I just have to create two commands for each branch of the IF. Thanks!

14
 I get the event InputKeys.Send:{PGUP} but no page up key is registered in any app or key logger. How do I debug this?

Pages: [1]