<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:media="http://search.yahoo.com/mrss/">
<channel>
<title>VoiceBot RSS: Multiple programs controlled by one profile</title>
<atom:link href="https://www.voicebot.net/Discussions/RSS/?TopicID=7ed48edf-7c7a-4517-b71d-46f70221e967" rel="self" type="application/rss+xml" />
<link>https://www.voicebot.net/Discussions/RSS/?TopicID=7ed48edf-7c7a-4517-b71d-46f70221e967</link>
<description>VoiceBot RSS: Multiple programs controlled by one profile</description>
<lastBuildDate>Thu, 30 Apr 2026 13:18:10 GMT</lastBuildDate>
<language>en</language>
<sy:updatePeriod>hourly</sy:updatePeriod>
<sy:updateFrequency>1</sy:updateFrequency>
<generator>https://www.voicebot.net/Discussions/RSS/?TopicID=7ed48edf-7c7a-4517-b71d-46f70221e967</generator>
<item>
<title>RE: Multiple programs controlled by one profile</title>
<link>https://www.voicebot.net/Discussions/View/multiple-programs-controlled-by-one-profile/?ID=7ed48edf-7c7a-4517-b71d-46f70221e967#6</link>
<pubDate>Tue, 10 Jul 2018 13:20:18 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.voicebot.net/Discussions/View/multiple-programs-controlled-by-one-profile/?ID=7ed48edf-7c7a-4517-b71d-46f70221e967#6</guid>
<category>VoiceBot</category>
<description><![CDATA[I use command line media to control volume, track , pause and play with no need to change focus, works with Itunes, Spotify, Windows Media Player and vlc you get it from
https://github.com/InvalidCastEx/CommandLineMedia/blob/master/docs/Documentation.md
Next track
BFS.Application.Start("C:\\Pr...]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
I use command line media to control volume, track , pause and play with no need to change focus, works with Itunes, Spotify, Windows Media Player and vlc you get it from<br/>
<br/>
https://github.com/InvalidCastEx/CommandLineMedia/blob/master/docs/Documentation.md<br/>
<br/>
Next track<br/>
<br/>
BFS.Application.Start("C:\\Program Files (x86)\\VideoLAN\\VLC\\CLMControl.exe ", " vlc  -nt");<br/>
<br/>
Volume up <br/>
BFS.Application.Start("C:\\Program Files (x86)\\VideoLAN\\VLC\\CLMControl.exe ", " vlc -vu -vu ");
</div>
]]></content:encoded>
</item>
<item>
<title>RE: Multiple programs controlled by one profile</title>
<link>https://www.voicebot.net/Discussions/View/multiple-programs-controlled-by-one-profile/?ID=7ed48edf-7c7a-4517-b71d-46f70221e967#5</link>
<pubDate>Tue, 10 Jul 2018 05:40:40 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.voicebot.net/Discussions/View/multiple-programs-controlled-by-one-profile/?ID=7ed48edf-7c7a-4517-b71d-46f70221e967#5</guid>
<category>VoiceBot</category>
<description><![CDATA[Hello Dab42
Thank you. Thank you, Thank you.
That was exactly what I was looking for.
This tells iTunes to play the next song in the playlist:
Code
Copy
Select All
BFS.Window.Focus(BFS.Application.GetMainWindowByFile("C:\\Program Files\\iTunes\\iTunes.exe"));
BFS.Input.SendKeys("^({VK_39}...]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
Hello Dab42<br/>
<br/>
Thank you. Thank you, Thank you.<br/>
<br/>
That was exactly what I was looking for.<br/>
<br/>
This tells iTunes to play the next song in the playlist:<br/>
<div class="col-md-12 BoxWrap"><div class="Box table-responsive"><a name="code" style="width:0; height:0;"></a><h2 class="TableTitle" style="border:0"><div class="TableTitleText">Code</div><div class="TitleButtons"><div class="TableTitleButton"><a href="#" onclick="return false;" data-clipboard-target="#code019dde8a2a7773a0930d5fd4d898bcd1" class="ClipboardCopyControl"><img src="https://www.voicebot.net/MediaCommon/SVGs/FontAwesome/clone.blue.svg" style="box-sizing:border-box;position:relative;overflow:hidden;width:auto;max-width:16px;height:16px;" /><span class="Text">Copy</span></a></div><div class="TableTitleButton"><a href="#" onclick="bfs.util.codeEditorSelectAll('code019dde8a2a7773a0930d5fd4d898bcd1Js'); return false;"><img src="https://www.voicebot.net/MediaCommon/SVGs/FontAwesome/square-check.blue.svg" style="box-sizing:border-box;position:relative;overflow:hidden;width:auto;max-width:16px;height:16px;" /><span class="Text">Select All</span></a></div></div></h2><div class="TableTitleContent table-responsive"><div class="AceEditorWrapper" style="border-top:solid 1px var(--color-default-border);padding:0"><pre id="code019dde8a2a7773a0930d5fd4d898bcd1Js" contenteditable="true" spellcheck="true" class="skiptranslate" style="width:100%; min-height:75px;">BFS.Window.Focus(BFS.Application.GetMainWindowByFile("C:\\Program Files\\iTunes\\iTunes.exe"));
        BFS.Input.SendKeys("^({VK_39})");
        BFS.Window.Focus(BFS.Application.GetMainWindowByFile("G:\\EliteDangerous\\steamapps\\common\\Elite Dangerous\\Products\\elite-dangerous-64\\EliteDangerous64.exe"));

        BFS.VoiceBotActions.MouseClick("1");</pre><textarea id="code019dde8a2a7773a0930d5fd4d898bcd1" name="code019dde8a2a7773a0930d5fd4d898bcd1" style="position:absolute; top:0; left:-999999px; width:1px; height:1px;"></textarea></div>
</div></div></div><br/>
<br/>
And a variation for the controlling the volume:<br/>
<br/>
<div class="col-md-12 BoxWrap"><div class="Box table-responsive"><a name="code" style="width:0; height:0;"></a><h2 class="TableTitle" style="border:0"><div class="TableTitleText">Code</div><div class="TitleButtons"><div class="TableTitleButton"><a href="#" onclick="return false;" data-clipboard-target="#code019dde8a2a8071ed895f3fe3d64bda17" class="ClipboardCopyControl"><img src="https://www.voicebot.net/MediaCommon/SVGs/FontAwesome/clone.blue.svg" style="box-sizing:border-box;position:relative;overflow:hidden;width:auto;max-width:16px;height:16px;" /><span class="Text">Copy</span></a></div><div class="TableTitleButton"><a href="#" onclick="bfs.util.codeEditorSelectAll('code019dde8a2a8071ed895f3fe3d64bda17Js'); return false;"><img src="https://www.voicebot.net/MediaCommon/SVGs/FontAwesome/square-check.blue.svg" style="box-sizing:border-box;position:relative;overflow:hidden;width:auto;max-width:16px;height:16px;" /><span class="Text">Select All</span></a></div></div></h2><div class="TableTitleContent table-responsive"><div class="AceEditorWrapper" style="border-top:solid 1px var(--color-default-border);padding:0"><pre id="code019dde8a2a8071ed895f3fe3d64bda17Js" contenteditable="true" spellcheck="true" class="skiptranslate" style="width:100%; min-height:75px;">BFS.Window.Focus(BFS.Application.GetMainWindowByFile("C:\\Program Files\\iTunes\\iTunes.exe"));
        BFS.Input.SendKeys("^({VK_40})");
        BFS.Input.SendKeys("^({VK_40})");
        BFS.Input.SendKeys("^({VK_40})");
        BFS.Input.SendKeys("^({VK_40})");
        BFS.Input.SendKeys("^({VK_40})");
        BFS.Window.Focus(BFS.Application.GetMainWindowByFile("G:\\EliteDangerous\\steamapps\\common\\Elite Dangerous\\Products\\elite-dangerous-64\\EliteDangerous64.exe"));

        BFS.VoiceBotActions.MouseClick("1");</pre><textarea id="code019dde8a2a8071ed895f3fe3d64bda17" name="code019dde8a2a8071ed895f3fe3d64bda17" style="position:absolute; top:0; left:-999999px; width:1px; height:1px;"></textarea></div>
</div></div></div><br/>
<br/>
Although I probably could tell it to loop to get the 5 increments to volume down...
</div>
]]></content:encoded>
</item>
<item>
<title>RE: Multiple programs controlled by one profile</title>
<link>https://www.voicebot.net/Discussions/View/multiple-programs-controlled-by-one-profile/?ID=7ed48edf-7c7a-4517-b71d-46f70221e967#4</link>
<pubDate>Mon, 09 Jul 2018 23:48:36 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.voicebot.net/Discussions/View/multiple-programs-controlled-by-one-profile/?ID=7ed48edf-7c7a-4517-b71d-46f70221e967#4</guid>
<category>VoiceBot</category>
<description><![CDATA[I use it with elite dangerous and start vlc playing a stream and use CMLcontrol to control vlc from one script
Need to use this macro to start vls and return focus to elite ,
Code
Copy
Select All
BFS.Speech.TextToSpeech("loading");
uint appID = BFS.Application.Start("C:\\Program Files (x86)...]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
I use it with elite dangerous and start vlc playing a stream and use CMLcontrol to control vlc from one script <br/>
<br/>
Need to use this macro to start vls and return focus to elite , <br/>
<br/>
<div class="col-md-12 BoxWrap"><div class="Box table-responsive"><a name="code" style="width:0; height:0;"></a><h2 class="TableTitle" style="border:0"><div class="TableTitleText">Code</div><div class="TitleButtons"><div class="TableTitleButton"><a href="#" onclick="return false;" data-clipboard-target="#code019dde8a2a8a72a8b03a96b34b3eb584" class="ClipboardCopyControl"><img src="https://www.voicebot.net/MediaCommon/SVGs/FontAwesome/clone.blue.svg" style="box-sizing:border-box;position:relative;overflow:hidden;width:auto;max-width:16px;height:16px;" /><span class="Text">Copy</span></a></div><div class="TableTitleButton"><a href="#" onclick="bfs.util.codeEditorSelectAll('code019dde8a2a8a72a8b03a96b34b3eb584Js'); return false;"><img src="https://www.voicebot.net/MediaCommon/SVGs/FontAwesome/square-check.blue.svg" style="box-sizing:border-box;position:relative;overflow:hidden;width:auto;max-width:16px;height:16px;" /><span class="Text">Select All</span></a></div></div></h2><div class="TableTitleContent table-responsive"><div class="AceEditorWrapper" style="border-top:solid 1px var(--color-default-border);padding:0"><pre id="code019dde8a2a8a72a8b03a96b34b3eb584Js" contenteditable="true" spellcheck="true" class="skiptranslate" style="width:100%; min-height:75px;">BFS.Speech.TextToSpeech("loading");
uint appID = BFS.Application.Start("C:\\Program Files (x86)\\VideoLAN\\VLC\\VLC.exe ", "http://5-196-72-136.caramania.net:80/classic_rock");

BFS.Window.Focus(BFS.Application.GetMainWindowByFile("C:\\Program Files\\Oculus\\Software\\Software\\frontier-developments-plc-elite-dangerous\\Products\\elite-dangerous-64\\EliteDangerous64.exe"));

BFS.VoiceBotActions.MouseClick("1");</pre><textarea id="code019dde8a2a8a72a8b03a96b34b3eb584" name="code019dde8a2a8a72a8b03a96b34b3eb584" style="position:absolute; top:0; left:-999999px; width:1px; height:1px;"></textarea></div>
</div></div></div><br/>
<br/>
I am sure this could be improved on as I don’t know how to code in c# , just pieced this together from online help
</div>
]]></content:encoded>
</item>
<item>
<title>RE: Multiple programs controlled by one profile</title>
<link>https://www.voicebot.net/Discussions/View/multiple-programs-controlled-by-one-profile/?ID=7ed48edf-7c7a-4517-b71d-46f70221e967#3</link>
<pubDate>Tue, 10 Oct 2017 14:13:08 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.voicebot.net/Discussions/View/multiple-programs-controlled-by-one-profile/?ID=7ed48edf-7c7a-4517-b71d-46f70221e967#3</guid>
<category>VoiceBot</category>
<description><![CDATA[I've actually managed using my VoiceBot profile for multiple programs which were running simultaneously with different focus.
Settings -&gt; Configuration -&gt; Profile Marco Actions -&gt; Only run macros on associated application (standard) was also checked, so no issues there.
I did the follo...]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
I've actually managed using my VoiceBot profile for multiple programs which were running simultaneously with different focus.<br/>
Settings -&gt; Configuration -&gt; Profile Marco Actions -&gt; Only run macros on associated application (standard) was also checked, so no issues there.<br/>
<br/>
I did the following at the "Associate this profile with a specific program:", just entered 2 different .exes as per "game.exe|tool.exe". First of all, the tool, which is not fullscreen and will be behind the game rendering window, should be pinned to your task bar (same for the game, for switching back).<br/>
<br/>
By saying "activate slow mo", the tool should go either by some advanced commands (like outta focus key-combo shortcuts like CTRL+NUM1) or the simple way:<br/>
* press Windows+3 for 25ms (focuses the tool)<br/>
* aim with mouse at X and Y coord.,<br/>
* leftclick once,<br/>
* windows+4 to return back to your game<br/>
<br/>
It works just fine for me.  <img src="https://www.voicebot.net/MediaCommon/SVGs/FontAwesome/face-smile.light.svg" alt=":)" style="box-sizing:border-box;position:relative;overflow:hidden;vertical-align:middle !important;width:16px;height:16px;" HelpButtonData=":)" HelpButtonDataAlign="BelowMiddle" />
</div>
]]></content:encoded>
</item>
<item>
<title>RE: Multiple programs controlled by one profile</title>
<link>https://www.voicebot.net/Discussions/View/multiple-programs-controlled-by-one-profile/?ID=7ed48edf-7c7a-4517-b71d-46f70221e967#2</link>
<pubDate>Tue, 10 Oct 2017 13:24:25 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.voicebot.net/Discussions/View/multiple-programs-controlled-by-one-profile/?ID=7ed48edf-7c7a-4517-b71d-46f70221e967#2</guid>
<category>VoiceBot</category>
<description><![CDATA[Unfortunately it's only possible to send input to the currently focused program, this is a Windows limitation]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
Unfortunately it's only possible to send input to the currently focused program, this is a Windows limitation <img src="https://www.voicebot.net/MediaCommon/SVGs/FontAwesome/face-frown.light.svg" alt=":(" style="box-sizing:border-box;position:relative;overflow:hidden;vertical-align:middle !important;width:16px;height:16px;" HelpButtonData=":(" HelpButtonDataAlign="BelowMiddle" />
</div>
]]></content:encoded>
</item>
<item>
<title>Multiple programs controlled by one profile</title>
<link>https://www.voicebot.net/Discussions/View/multiple-programs-controlled-by-one-profile/?ID=7ed48edf-7c7a-4517-b71d-46f70221e967</link>
<pubDate>Sat, 07 Oct 2017 04:16:25 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.voicebot.net/Discussions/View/multiple-programs-controlled-by-one-profile/?ID=7ed48edf-7c7a-4517-b71d-46f70221e967</guid>
<category>VoiceBot</category>
<description><![CDATA[Hello
Is there a way to have one profile control multiple programs. For instance I have a Eliteangerous profile but I would like to direct certain commands to iTunes while I am flying my ship around the galaxy. It would be nice if I could direct each command to one program or another.]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
Hello<br/>
<br/>
Is there a way to have one profile control multiple programs. For instance I have a Elite<img src="https://www.voicebot.net/MediaCommon/SVGs/FontAwesome/face-laugh-squint.light.svg" alt=":D" style="box-sizing:border-box;position:relative;overflow:hidden;vertical-align:middle !important;width:16px;height:16px;" HelpButtonData=":D" HelpButtonDataAlign="BelowMiddle" />angerous profile but I would like to direct certain commands to iTunes while I am flying my ship around the galaxy. It would be nice if I could direct each command to one program or another.
</div>
]]></content:encoded>
</item>
</channel>
</rss>