Hi Hellow, your command does following:
It create a trigger event "loaded" and then it will execute your python code - but there is no phrase or event which trigger this command.
If you want to trigger the py-code when VC is loaded, you must do following:
1. delete the first action in your command "VC.TriggerEvent"
2. create a event as command part with name
VC.Loaded3. save and restart VC
VoxCommando generate a event "VC.Loaded" after starting automatically, this will trigger you command. This is how the events in VC work.
here is the code example:
<?xml version="1.0" encoding="utf-16"?>
<command id="287" name="onload" enabled="true" alwaysOn="False" confirm="False" requiredConfidence="0" loop="False" loopDelay="0" loopMax="0" description="">
<action>
<cmdType>PY.ExecFile</cmdType>
<cmdString>Plugins\PY\samsung_tvremote.py</cmdString>
<cmdRepeat>1</cmdRepeat>
</action>
<event>VC.Loaded</event>
</command>
I hope this helps
Kalle