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.


Topics - 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 / 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.

3
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.

4
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.

5
 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]