Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - vmail

Pages: [1]
1
General Discussion / Commands sent too quickly
« on: September 25, 2012, 11:20:22 AM »
Hi, how do I add a 100ms delay between commands or repeat commands?

Code: [Select]
<command id="294" name="BBC One HD" enabled="true" alwaysOn="False" confirm="False" requiredConfidence="0" loop="False" loopDelay="0" loopMax="0" description="">
            <action>
                <cmdType>Scrape</cmdType>
                <cmdString>http://127.0.0.1/Samsung/samsungremote.php?key=5</cmdString>
                <cmdRepeat>1</cmdRepeat>
            </action>
            <action>
                <cmdType>Scrape</cmdType>
                <cmdString>http://127.0.0.1/Samsung/samsungremote.php?key=0</cmdString>
                <cmdRepeat>1</cmdRepeat>
            </action>
<phrase>goto B B C 1 H D</phrase>
        </command>

Code: [Select]
<command id="273" name="Volume Up" enabled="true" alwaysOn="False" confirm="False" requiredConfidence="0" loop="False" loopDelay="0" loopMax="0" description="">
            <action>
                <cmdType>Scrape</cmdType>
                <cmdString>http://127.0.0.1/Samsung/samsungremote.php?key=VOLUP</cmdString>
                <cmdRepeat>5</cmdRepeat>
            </action>
            <phrase>volume up</phrase>
        </command>

Also is there a way to put voxcommando into standby after 1 minute after the last command?

2
General Discussion / Sending commands to a webserver
« on: September 24, 2012, 05:36:45 PM »
Hi, this command works but it keeps creating new instances of internet explorer (hidden) and I cant terminate them in task manager, after a while I run out of RAM.

Code: [Select]
<command id="258" name="Right" enabled="true" alwaysOn="False" confirm="False" requiredConfidence="0" loop="False" loopDelay="0" loopMax="0" description="" >
            <action>
                <cmdType>Launch.Hidden</cmdType>
                <cmdString>C:\Program Files (x86)\Internet Explorer\iexplore.exe&amp;&amp;http://127.0.0.1/Samsung/samsungremote.php?key=RIGHT</cmdString>
                <cmdRepeat>1</cmdRepeat>
            </action>
            <phrase>tv right</phrase>
        </command>

Is there a way I can open port 81, send some data, when data is received back then close port 81? I know what HTTP data I need to send.

Pages: [1]