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 - MMatty1

Pages: [1]
1
Other Plugins / usb uirt
« on: April 17, 2021, 06:31:41 AM »
Hi, long time user and love Vox, im having problem with newest stable version and usb uirt, it keeps saying its not connected but it is, i go into plugin settings to reinitialize but it just keeps saying failed to load, ive gone back to 2.2.40 version as its working in that one fine, but would like to update for new features, any info on the problem would be much appreciated, maybe something im doing wrong but cant work it out,Thanks

2
VoxCommando Basics and Core Features / Help with 2.2.4.0 crashing
« on: August 12, 2018, 04:36:54 PM »
Hi I have been having problems lately with my voxcommando crashing on windows 10 and i am not sure what i have changed to cause this, i have never had crash issues before,it stays open for hour nearly always then just closing without notifying me, here is my voxlog,txt and was hoping someone can see the error or advise me on what i can try?

Sorry cant give more info as dont have any
Sorry if posting wrong board
https://www.dropbox.com/s/oayfvgfpinb1rl5/voxLog.txt?dl=0

EDIT--I have just disabled hook plugin as i enabled the for testing but forgot to disable as not using it ill get back if any more crashing.

3
XML Exchange / Knock Knock Joke
« on: April 01, 2017, 11:29:34 PM »
Hi Ive Made this command to scrape a joke webpage and return knock knock jokes but i cant figure out how i can pause in middle of joke to say whos there and make it pick a random one, so far i put 2 pauses in but am up for suggestions as im lost on what to do next and yous know alot more than i do?any help appreciated..

Code: [Select]
<?xml version="1.0" encoding="utf-16"?>
<!--VoxCommando 2.2.3.5-->
<command id="270" name="Knock Knock Joke" enabled="true" alwaysOn="False" confirm="False" requiredConfidence="0" loop="False" loopDelay="0" loopMax="0" description="">
  <action>
    <cmdType>Scrape</cmdType>
    <params>
      <param>https://www.jokesbykids.com/knock-knock/</param>
    </params>
    <cmdRepeat>1</cmdRepeat>
  </action>
  <action>
    <cmdType>Results.Replace</cmdType>
    <params>
      <param>&lt;br</param>
      <param><![CDATA[ ]]></param>
    </params>
    <cmdRepeat>1</cmdRepeat>
  </action>
  <action>
    <cmdType>Results.RegExReplace</cmdType>
    <params>
      <param>\d</param>
    </params>
    <cmdRepeat>1</cmdRepeat>
  </action>
  <action>
    <cmdType>Results.RegExReplace</cmdType>
    <params>
      <param>&amp;</param>
    </params>
    <cmdRepeat>1</cmdRepeat>
  </action>
  <action>
    <cmdType>Results.RegExReplace</cmdType>
    <params>
      <param>#</param>
    </params>
    <cmdRepeat>1</cmdRepeat>
  </action>
  <action>
    <cmdType>Results.RegExReplace</cmdType>
    <params>
      <param>;</param>
    </params>
    <cmdRepeat>1</cmdRepeat>
  </action>
  <action>
    <cmdType>Results.RegEx</cmdType>
    <params>
      <param>&lt;p&gt;(.*?)/&gt;.*?/&gt;(.*?)/&gt;.*?&lt;div\sclass="punch_line"&gt;(.*?)&lt;/div&gt;&lt;/div&gt;</param>
    </params>
    <cmdRepeat>1</cmdRepeat>
  </action>
  <action>
    <cmdType>TTS.Speak</cmdType>
    <params>
      <param>{Match.1.1}</param>
    </params>
    <cmdRepeat>1</cmdRepeat>
  </action>
  <action>
    <cmdType>VC.Pause</cmdType>
    <params>
      <param>3000</param>
    </params>
    <cmdRepeat>1</cmdRepeat>
  </action>
  <action>
    <cmdType>TTS.Speak</cmdType>
    <params>
      <param>{Match.1.2}</param>
    </params>
    <cmdRepeat>1</cmdRepeat>
  </action>
  <action>
    <cmdType>VC.Pause</cmdType>
    <params>
      <param>3000</param>
    </params>
    <cmdRepeat>1</cmdRepeat>
  </action>
  <action>
    <cmdType>TTS.Speak</cmdType>
    <params>
      <param>{Match.1.3}</param>
    </params>
    <cmdRepeat>1</cmdRepeat>
  </action>
  <phrase>New Joke Please</phrase>
</command>

4
Hi I just upgraded and im now getting a error every 10 seconds saying Input error:COMException,time since mic event:20,trying to reset,mic reset,,,and just keeps repeating i tried to go back to 2.2.2.2 but now that version doing it any soloutions??

5
Hi im Still having issues using robob and scrolling using keyboard emulation {PGUP} or {PGDN} ive tried all 3 methods but no luck,im using newest vox? All other commands work great thnxxx for them guys.Any help Appreciated Thnxx

6
Kodi (XBMC) Frodo / Gotham / Isengard / Jarvis / Starts with command
« on: February 04, 2017, 06:44:12 AM »
Hi kodi users, just wondering if anyone uses the standard starts with letter command for kodi in vox as ive never gotten it to work, vox kodi on same pc and kodi version jarvis..

7
XML Exchange / Play Next Episode Of {1}
« on: December 29, 2016, 07:48:01 AM »
Hi this command is simple, ask for next episode of tvshow in your kodi library and it will find and play it if no new unwatched episodes available it tells you..



Code: [Select]
<?xml version="1.0" encoding="utf-16"?>
<!--VoxCommando 2.2.2.2-->
<command id="286" name=" Play Next Episodes of {1}" enabled="true" alwaysOn="False" confirm="False" requiredConfidence="0" loop="False" loopDelay="0" loopMax="0" description="">
  <action>
    <cmdType>XJson.Raw</cmdType>
    <params>
      <param>Playlist.Clear</param>
      <param>"playlistid": 1</param>
    </params>
    <cmdRepeat>1</cmdRepeat>
  </action>
  <action>
    <cmdType>XJson.SmartPL</cmdType>
    <params>
      <param>smarts\unwatchedepisode.xsp</param>
      <param>{1}</param>
    </params>
    <cmdRepeat>1</cmdRepeat>
  </action>
  <action>
    <cmdType>XJson.Raw</cmdType>
    <params>
      <param>Player.Open</param>
      <param>"item":{"file":"special://profile/playlists/mixed/voxsmart.xsp"}</param>
    </params>
    <cmdRepeat>1</cmdRepeat>
  </action>
  <action>
    <cmdType>XJson.Raw</cmdType>
    <params>
      <param>Player.GetActivePlayers</param>
    </params>
    <cmdRepeat>1</cmdRepeat>
  </action>
  <if ifBlockDisabled="False" ifNot="False">
    <ifType>(A)Contains(B)</ifType>
    <ifParams>{LastResult}&amp;&amp;"type": "video"</ifParams>
    <then />
    <else>
      <action>
        <cmdType>TTS.Speak</cmdType>
        <params>
          <param>no new episodes available</param>
        </params>
        <cmdRepeat>1</cmdRepeat>
      </action>
    </else>
  </if>
  <phrase>Play next episode of </phrase>
  <payloadFromXML phraseOnly="True" use2partPhrase="False" phraseConnector="by" Phrase2wildcard="anyone" optional="False">XbmcPayloads\xbmcTvShowTitles.xml</payloadFromXML>
</command>

8
General Discussion / Roles command kodi
« on: December 20, 2016, 08:12:21 AM »
Hi James, i just found the roles command posted awhile back, and was wondering if i can still use it with another action to query database, cos i thought it was added but ive just looked in my tree and cant find it im on newest vox so im guessing you never added it, My wife would really love this command as she likes to know whos playing who in what??

Pages: [1]