12
« on: June 11, 2014, 02:34:53 PM »
I changed XBMC video output to full-screen and off the True full-screen. Here is the code I have so far.
<?xml version="1.0" encoding="utf-8"?>
<!--C:\Users\Nick\Downloads\VcGrp_Daphne.xml-->
<VoiceCommands version="">
<!--this is an exported VoxCommando group-->
<commandGroup open="True" name="Daphne" enabled="True" prefix="" priority="0" requiredProcess="" description="">
<command id="811" name="Show/Hide" enabled="true" alwaysOn="False" confirm="False" requiredConfidence="0" loop="False" loopDelay="0" loopMax="0" description="">
<if ifBlockDisabled="False" ifNot="False">
<ifType>(A)Contains(B)</ifType>
<ifParams>show,reveal,where, i need&&{1}</ifParams>
<then>
<action>
<cmdType>Window.Focus</cmdType>
<params>
<param>xbmc</param>
</params>
<cmdRepeat>1</cmdRepeat>
</action>
<action>
<cmdType>Window.Maximize</cmdType>
<params />
<cmdRepeat>1</cmdRepeat>
</action>
<action>
<cmdType>TTS.ShowHead</cmdType>
<params>
<param>True</param>
</params>
<cmdRepeat>1</cmdRepeat>
</action>
<action>
<cmdType>Window.focus</cmdType>
<params>
<param>voxcommando</param>
</params>
<cmdRepeat>1</cmdRepeat>
</action>
<action>
<cmdType>TTS.Speak</cmdType>
<params>
<param>How can I help you Mr. Ivory?| Yes Mr. Ivory!|Here I am Mr. Ivory.</param>
</params>
<cmdRepeat>1</cmdRepeat>
</action>
</then>
<else />
</if>
<if ifBlockDisabled="False" ifNot="False">
<ifType>(A)Contains(B)</ifType>
<ifParams>conceal,hide, thats&&{1}</ifParams>
<then>
<action>
<cmdType>TTS.Speak</cmdType>
<params>
<param>Okay, let me know if you need anything else.| Ok, I'll be over here if you need me.| Ok, let me know if I can help you.</param>
</params>
<cmdRepeat>1</cmdRepeat>
</action>
<action>
<cmdType>TTS.ShowHead</cmdType>
<params>
<param>False</param>
</params>
<cmdRepeat>1</cmdRepeat>
</action>
<action>
<cmdType>Window.Focus</cmdType>
<params>
<param>xbmc</param>
</params>
<cmdRepeat>1</cmdRepeat>
</action>
<action>
<cmdType>Window.Normalize</cmdType>
<params />
<cmdRepeat>1</cmdRepeat>
</action>
</then>
<else />
</if>
<payloadList>show,hide,reveal,conceal, where, thats,i need</payloadList>
<phrase>yourself,are you,all,you,your help</phrase>
<phrase optional="true">for now</phrase>
</command>
</commandGroup>
</VoiceCommands>