Hi all,
I have a basic understanding of VC and coding in general (sadly have not yet learnt JSON not sure if this would help)
Im sure this is a simple fix, but i have spent the last 3 hours going around in circles reading WIKI and digging through the forum finding XML commands and trying to deduct where im going wrong from others sucessfull commands.
TO THE POINT!
so i'm trying to setup a command that simply opens the weather window on my XBMC (hoping to add this command into my "WakeUp" Vera Scene that triggers VC goodmorning and current weather TTS.
i have one command that is Xjson.Raw and from what i can tell i have the value set almost right, i think i just need the parameters part?
<?xml version="1.0" encoding="utf-16"?>
<!--VoxCommando 2.1.4.8-->
<command id="296" name="test guiWeather" enabled="true" alwaysOn="False" confirm="False" requiredConfidence="0" loop="False" loopDelay="0" loopMax="0" description="">
<action>
<cmdType>XJson.Raw</cmdType>
<params>
<param>GUI.ActiviateWindow</param>
<param>"window":"weather", "parameters" : ["missing this part"]</param>
</params>
<cmdRepeat>1</cmdRepeat>
</action>
</command>
If anyone could direct me to a page with any sort of documentation on this function or any more basic functions or even somewhere i can read and figure out the correct syntax i would be verry greatfull! (as i have read over the wiki JSON-RPC API to no avail
)