It looks like your version of the command was accidentally edited, and the most important action was removed.
In the default configuration that comes with VC, the command is:
<?xml version="1.0" encoding="utf-16"?>
<!--VoxCommando 2.2.1.4-->
<command id="540" name="What movie is this" enabled="true" alwaysOn="False" confirm="False" requiredConfidence="0" loop="False" loopDelay="0" loopMax="0" description="">
<action>
<cmdType>XJson.Raw</cmdType>
<params>
<param>Player.GetItem</param>
<param>"playerid":1, "properties": ["title","cast"]</param>
</params>
<cmdRepeat>1</cmdRepeat>
</action>
<action>
<cmdType>Results.RegEx</cmdType>
<params>
<param>"name".*?"(.*)"</param>
</params>
<cmdRepeat>1</cmdRepeat>
</action>
<action>
<cmdType>Results.MatchConcat</cmdType>
<params>
<param>, </param>
<param>3</param>
</params>
<cmdRepeat>1</cmdRepeat>
</action>
<action>
<cmdType>XJson.ParseTokens</cmdType>
<params>
<param>Now playing {item.title} starring {lastresult}</param>
</params>
<cmdRepeat>1</cmdRepeat>
</action>
<action>
<cmdType>XJson.SoftMute</cmdType>
<params>
<param>60</param>
</params>
<cmdRepeat>1</cmdRepeat>
</action>
<action>
<cmdType>TTS.SpeakSync</cmdType>
<params>
<param>{LastResult}</param>
</params>
<cmdRepeat>1</cmdRepeat>
</action>
<action>
<cmdType>XJson.SoftUnMute</cmdType>
<params />
<cmdRepeat>1</cmdRepeat>
</action>
<phrase>What Movie is this</phrase>
</command>
The
Results.RegEx line is required to capture the "name" json items from the result returned from Kodi.
In fact, if you roll over the line
XJson.Raw:Player.GetItem&&"playerid":1, "properties": ["title","cast"]
in your history window in VC, you'll see the same json result that you saw.
This is also captured in the VC log, if it's running. However, very recently Kodi has changed something on its end, which is causing a log jam in VC that we are trying to address for a future VC release.
So using the Vox Log to monitor Kodi behaviours is not advisable right now.
By the way, in general, we copy and paste commands from our command trees onto the forum, rather than using screen captures, as that makes it easier for others to test our commands if discussing a problem (or just use them if they're of interest).
http://voxcommando.com/mediawiki/index.php?title=XML_on_the_forum#Posting_Your_Code_to_the_Forum