<?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: Change Global Open Browser Command</title>
<atom:link href="https://www.voicebot.net/Discussions/RSS/?TopicID=bbccad8f-5423-41a0-a7b6-37a6157adea3" rel="self" type="application/rss+xml" />
<link>https://www.voicebot.net/Discussions/RSS/?TopicID=bbccad8f-5423-41a0-a7b6-37a6157adea3</link>
<description>VoiceBot RSS: Change Global Open Browser Command</description>
<lastBuildDate>Mon, 20 Apr 2026 13:08:17 GMT</lastBuildDate>
<language>en</language>
<sy:updatePeriod>hourly</sy:updatePeriod>
<sy:updateFrequency>1</sy:updateFrequency>
<generator>https://www.voicebot.net/Discussions/RSS/?TopicID=bbccad8f-5423-41a0-a7b6-37a6157adea3</generator>
<item>
<title>RE: Change Global Open Browser Command</title>
<link>https://www.voicebot.net/Discussions/View/change-global-open-browser-command/?ID=bbccad8f-5423-41a0-a7b6-37a6157adea3#2</link>
<pubDate>Thu, 25 Jan 2018 19:17:00 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.voicebot.net/Discussions/View/change-global-open-browser-command/?ID=bbccad8f-5423-41a0-a7b6-37a6157adea3#2</guid>
<category>VoiceBot</category>
<description><![CDATA[Thanks for the feedback! We've added this to our list.
What we'll likely do is break it out into a few Global Macros for Open Browser (new tab in existing window), Start Browser (new window), and Show Browser (focus existing window).]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
Thanks for the feedback! We've added this to our list.<br/>
<br/>
What we'll likely do is break it out into a few Global Macros for Open Browser (new tab in existing window), Start Browser (new window), and Show Browser (focus existing window).
</div>
]]></content:encoded>
</item>
<item>
<title>Change Global Open Browser Command</title>
<link>https://www.voicebot.net/Discussions/View/change-global-open-browser-command/?ID=bbccad8f-5423-41a0-a7b6-37a6157adea3</link>
<pubDate>Wed, 24 Jan 2018 01:56:48 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.voicebot.net/Discussions/View/change-global-open-browser-command/?ID=bbccad8f-5423-41a0-a7b6-37a6157adea3</guid>
<category>VoiceBot</category>
<description><![CDATA[Change the Global Open Browser Command macro scrip to this
public static void Run(IntPtr windowHandle)
{
string prog = BFS.Web.GetDefaultBrowserExe();
if(!BFS.Application.IsAppRunningByFile(prog)){
BFS.Application.Start(BFS.Web.GetDefaultBrowserExe());
}else{
BFS.Window.Focus(BFS.Applicati...]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
Change the Global Open Browser Command macro scrip to this<br/>
<br/>
public static void Run(IntPtr windowHandle)<br/>
    {<br/>
    string prog = BFS.Web.GetDefaultBrowserExe();<br/>
    if(!BFS.Application.IsAppRunningByFile(prog)){<br/>
        BFS.Application.Start(BFS.Web.GetDefaultBrowserExe());<br/>
    }else{<br/>
    BFS.Window.Focus(BFS.Application.GetMainWindowByFile(prog));<br/>
    }<br/>
    }<br/>
<br/>
the purpose is to prevent multiple windows from opening at the same time due to introduction of tabbed browsing by default for all browsers
</div>
]]></content:encoded>
</item>
</channel>
</rss>