if you could share the command you have made, that would make it a lot easier to fully understand what is happening,
how to post a command:
http://voxcommando.com/mediawiki/index.php?title=XML_on_the_forumor you could try something similar to whats below
in the logic block of the command where it says "YOUR_VOXWAV_IP_ADDRESS" change that to your voxwav device IP Address
when using voxwav it carries your device IP Address as payload 1,
<?xml version="1.0" encoding="utf-16"?>
<!--VoxCommando 2.1.4.5-->
<command id="891" name="one command two actions" enabled="true" alwaysOn="False" confirm="False" requiredConfidence="0" loop="False" loopDelay="0" loopMax="0" description="">
<if ifBlockDisabled="False" ifNot="False">
<ifType>(A)==(B)</ifType>
<ifParams>{1}&&YOUR_VOXWAV_IP_ADDRESS </ifParams>
<then>
<action>
<cmdType>OSD.ShowText</cmdType>
<params>
<param>VOXWAV</param>
</params>
<cmdRepeat>1</cmdRepeat>
</action>
</then>
<else>
<action>
<cmdType>OSD.ShowText</cmdType>
<params>
<param>YOUR PC MIC</param>
</params>
<cmdRepeat>1</cmdRepeat>
</action>
</else>
</if>
<phrase>Who said that</phrase>
</command>
with this command when you test it with voxwav it will show OSD of "Voxwav"
and if you use your pc mic it will show OSD "YOUR PC MIC"