<?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: Help with BFS.Web.OpenUrl</title>
<atom:link href="https://www.voicebot.net/Discussions/RSS/?TopicID=96b37281-9f2f-40e9-99ea-411e0fcaf8de" rel="self" type="application/rss+xml" />
<link>https://www.voicebot.net/Discussions/RSS/?TopicID=96b37281-9f2f-40e9-99ea-411e0fcaf8de</link>
<description>VoiceBot RSS: Help with BFS.Web.OpenUrl</description>
<lastBuildDate>Sat, 02 May 2026 14:17:16 GMT</lastBuildDate>
<language>en</language>
<sy:updatePeriod>hourly</sy:updatePeriod>
<sy:updateFrequency>1</sy:updateFrequency>
<generator>https://www.voicebot.net/Discussions/RSS/?TopicID=96b37281-9f2f-40e9-99ea-411e0fcaf8de</generator>
<item>
<title>RE: Help with BFS.Web.OpenUrl</title>
<link>https://www.voicebot.net/Discussions/View/help-with-bfswebopenurl/?ID=96b37281-9f2f-40e9-99ea-411e0fcaf8de#12</link>
<pubDate>Wed, 03 Aug 2016 01:32:29 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.voicebot.net/Discussions/View/help-with-bfswebopenurl/?ID=96b37281-9f2f-40e9-99ea-411e0fcaf8de#12</guid>
<category>VoiceBot</category>
<description><![CDATA[On re-testing this issue, it seems to work correctly for us now with the latest version of Chrome Canary. If you still run into trouble, please let us know
Thanks!]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
On re-testing this issue, it seems to work correctly for us now with the latest version of Chrome Canary. If you still run into trouble, please let us know <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" /><br/>
<br/>
Thanks!
</div>
]]></content:encoded>
</item>
<item>
<title>RE: Help with BFS.Web.OpenUrl</title>
<link>https://www.voicebot.net/Discussions/View/help-with-bfswebopenurl/?ID=96b37281-9f2f-40e9-99ea-411e0fcaf8de#11</link>
<pubDate>Fri, 21 Aug 2015 00:57:02 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.voicebot.net/Discussions/View/help-with-bfswebopenurl/?ID=96b37281-9f2f-40e9-99ea-411e0fcaf8de#11</guid>
<category>VoiceBot</category>
<description><![CDATA[Thank you very much!]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
Thank you very much!
</div>
]]></content:encoded>
</item>
<item>
<title>RE: Help with BFS.Web.OpenUrl</title>
<link>https://www.voicebot.net/Discussions/View/help-with-bfswebopenurl/?ID=96b37281-9f2f-40e9-99ea-411e0fcaf8de#10</link>
<pubDate>Tue, 18 Aug 2015 17:22:35 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.voicebot.net/Discussions/View/help-with-bfswebopenurl/?ID=96b37281-9f2f-40e9-99ea-411e0fcaf8de#10</guid>
<category>VoiceBot</category>
<description><![CDATA[It looks like you didn't escape the backslashes in your path. Here's some code that should fix up your issue:
Code
Copy
Select All
using System;
using System.Drawing;
public static class VoiceBotScript
{
public static void Run(IntPtr windowHandle)
{
BFS.Application.Start("C:\\Program Fi...]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
It looks like you didn't escape the backslashes in your path. Here's some code that should fix up your issue:<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="#code019de90cfff37547a917e48acdf7dd92" 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('code019de90cfff37547a917e48acdf7dd92Js'); 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="code019de90cfff37547a917e48acdf7dd92Js" contenteditable="true" spellcheck="true" class="skiptranslate" style="width:100%; min-height:75px;">using System;
using System.Drawing;

public static class VoiceBotScript
{
  public static void Run(IntPtr windowHandle)
    {
                 BFS.Application.Start("C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe", "www.voicebot.net");
    }
}</pre><textarea id="code019de90cfff37547a917e48acdf7dd92" name="code019de90cfff37547a917e48acdf7dd92" style="position:absolute; top:0; left:-999999px; width:1px; height:1px;"></textarea></div>
</div></div></div><br/>
<br/>
Hope this helps! <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: Help with BFS.Web.OpenUrl</title>
<link>https://www.voicebot.net/Discussions/View/help-with-bfswebopenurl/?ID=96b37281-9f2f-40e9-99ea-411e0fcaf8de#9</link>
<pubDate>Tue, 18 Aug 2015 03:39:31 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.voicebot.net/Discussions/View/help-with-bfswebopenurl/?ID=96b37281-9f2f-40e9-99ea-411e0fcaf8de#9</guid>
<category>VoiceBot</category>
<description><![CDATA[If this is what it is supposed to look like it's not working as in not compiling. Help please. Thanks for all the help so far.
Code
Copy
Select All
using System;
using System.Drawing;
public static class VoiceBotScript
{
public static void Run(IntPtr windowHandle)
{
BFS.Application.Star...]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
If this is what it is supposed to look like it's not working as in not compiling. Help please. Thanks for all the help so far.<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="#code019de90cfffb7715af39d599255cc195" 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('code019de90cfffb7715af39d599255cc195Js'); 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="code019de90cfffb7715af39d599255cc195Js" contenteditable="true" spellcheck="true" class="skiptranslate" style="width:100%; min-height:75px;">using System;
using System.Drawing;

   public static class VoiceBotScript
{
  public static void Run(IntPtr windowHandle)
    {
                 BFS.Application.Start("C:\Program Files (x86)\Google\Chrome\Application\chrome.exe", "www.voicebot.net");
    }
}</pre><textarea id="code019de90cfffb7715af39d599255cc195" name="code019de90cfffb7715af39d599255cc195" style="position:absolute; top:0; left:-999999px; width:1px; height:1px;"></textarea></div>
</div></div></div><br/>
<br/>
Note: chrome.exe is Chrome Canary and that is the path.
</div>
]]></content:encoded>
</item>
<item>
<title>RE: Help with BFS.Web.OpenUrl</title>
<link>https://www.voicebot.net/Discussions/View/help-with-bfswebopenurl/?ID=96b37281-9f2f-40e9-99ea-411e0fcaf8de#8</link>
<pubDate>Mon, 17 Aug 2015 15:06:19 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.voicebot.net/Discussions/View/help-with-bfswebopenurl/?ID=96b37281-9f2f-40e9-99ea-411e0fcaf8de#8</guid>
<category>VoiceBot</category>
<description><![CDATA[Hi, it looks like Canary does have some problems with Windows 10 and our scripting API. In the meantime, can you use a work around in your script? Instead of using BFS.Web.OpenUrl, can you use BFS.Application.Start? The code should look something like this:
Code
Copy
Select All
BFS.Applicatio...]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
Hi, it looks like Canary does have some problems with Windows 10 and our scripting API. In the meantime, can you use a work around in your script? Instead of using BFS.Web.OpenUrl, can you use BFS.Application.Start? The code should look something like this:<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="#code019de90d0002765ab24e086b207d3f0d" 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('code019de90d0002765ab24e086b207d3f0dJs'); 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="code019de90d0002765ab24e086b207d3f0dJs" contenteditable="true" spellcheck="true" class="skiptranslate" style="width:100%; min-height:75px;">BFS.Application.Start("[path to your Google Chrome Canary executable]", "[ URL of the website]");</pre><textarea id="code019de90d0002765ab24e086b207d3f0d" name="code019de90d0002765ab24e086b207d3f0d" style="position:absolute; top:0; left:-999999px; width:1px; height:1px;"></textarea></div>
</div></div></div><br/>
<br/>
That code should open a URL as a new tab in Chrome Canary.<br/>
<br/>
Hope this works for you! <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: Help with BFS.Web.OpenUrl</title>
<link>https://www.voicebot.net/Discussions/View/help-with-bfswebopenurl/?ID=96b37281-9f2f-40e9-99ea-411e0fcaf8de#7</link>
<pubDate>Mon, 17 Aug 2015 03:33:08 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.voicebot.net/Discussions/View/help-with-bfswebopenurl/?ID=96b37281-9f2f-40e9-99ea-411e0fcaf8de#7</guid>
<category>VoiceBot</category>
<description><![CDATA[I'm on Windows 10 and Chrome Canary is my set as my default browser on it. I'll also keep working on fixing it. It may be a fluke.]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
I'm on Windows 10 and Chrome Canary is my set as my default browser on it. I'll also keep working on fixing it. It may be a fluke.
</div>
]]></content:encoded>
</item>
<item>
<title>RE: Help with BFS.Web.OpenUrl</title>
<link>https://www.voicebot.net/Discussions/View/help-with-bfswebopenurl/?ID=96b37281-9f2f-40e9-99ea-411e0fcaf8de#6</link>
<pubDate>Fri, 14 Aug 2015 18:03:26 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.voicebot.net/Discussions/View/help-with-bfswebopenurl/?ID=96b37281-9f2f-40e9-99ea-411e0fcaf8de#6</guid>
<category>VoiceBot</category>
<description><![CDATA[Thanks! Two more questions. Which version of Windows are you running? And is Chrome Canary your default browser in Windows?]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
Thanks! Two more questions. Which version of Windows are you running? And is Chrome Canary your default browser in Windows?
</div>
]]></content:encoded>
</item>
<item>
<title>RE: Help with BFS.Web.OpenUrl</title>
<link>https://www.voicebot.net/Discussions/View/help-with-bfswebopenurl/?ID=96b37281-9f2f-40e9-99ea-411e0fcaf8de#5</link>
<pubDate>Wed, 12 Aug 2015 23:32:57 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.voicebot.net/Discussions/View/help-with-bfswebopenurl/?ID=96b37281-9f2f-40e9-99ea-411e0fcaf8de#5</guid>
<category>VoiceBot</category>
<description><![CDATA[It's very possible that it's because I'm using Google Chrome Canary, but it is set as my default browser. Hope this info helps you help me.]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
It's very possible that it's because I'm using Google Chrome Canary, but it is set as my default browser. Hope this info helps you help me.
</div>
]]></content:encoded>
</item>
<item>
<title>RE: Help with BFS.Web.OpenUrl</title>
<link>https://www.voicebot.net/Discussions/View/help-with-bfswebopenurl/?ID=96b37281-9f2f-40e9-99ea-411e0fcaf8de#4</link>
<pubDate>Mon, 10 Aug 2015 14:31:39 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.voicebot.net/Discussions/View/help-with-bfswebopenurl/?ID=96b37281-9f2f-40e9-99ea-411e0fcaf8de#4</guid>
<category>VoiceBot</category>
<description><![CDATA[Hi, we're still trying to work out why your script isn't working for you. Is it possible to let us know what browser you are using and its version, and what website you are trying to open? Thanks!]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
Hi, we're still trying to work out why your script isn't working for you. Is it possible to let us know what browser you are using and its version, and what website you are trying to open? Thanks! <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: Help with BFS.Web.OpenUrl</title>
<link>https://www.voicebot.net/Discussions/View/help-with-bfswebopenurl/?ID=96b37281-9f2f-40e9-99ea-411e0fcaf8de#3</link>
<pubDate>Thu, 06 Aug 2015 16:37:38 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.voicebot.net/Discussions/View/help-with-bfswebopenurl/?ID=96b37281-9f2f-40e9-99ea-411e0fcaf8de#3</guid>
<category>VoiceBot</category>
<description><![CDATA[I'm using 2.0.2 and it still doesn't work for me. Any reason?]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
I'm using 2.0.2 and it still doesn't work for me. Any reason?
</div>
]]></content:encoded>
</item>
<item>
<title>RE: Help with BFS.Web.OpenUrl</title>
<link>https://www.voicebot.net/Discussions/View/help-with-bfswebopenurl/?ID=96b37281-9f2f-40e9-99ea-411e0fcaf8de#2</link>
<pubDate>Fri, 17 Jul 2015 14:32:20 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.voicebot.net/Discussions/View/help-with-bfswebopenurl/?ID=96b37281-9f2f-40e9-99ea-411e0fcaf8de#2</guid>
<category>VoiceBot</category>
<description><![CDATA[Are you using the new VoiceBot 2.0.1 release? Thanks!]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
Are you using the new VoiceBot 2.0.1 release? Thanks!  <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>Help with BFS.Web.OpenUrl</title>
<link>https://www.voicebot.net/Discussions/View/help-with-bfswebopenurl/?ID=96b37281-9f2f-40e9-99ea-411e0fcaf8de</link>
<pubDate>Thu, 16 Jul 2015 21:49:10 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.voicebot.net/Discussions/View/help-with-bfswebopenurl/?ID=96b37281-9f2f-40e9-99ea-411e0fcaf8de</guid>
<category>VoiceBot</category>
<description><![CDATA[BFS.Web.OpenUrl isn't working on my computer, I'm not sure why. However, BFS.Web.OpenUrlNewWindow works fine except I don't want the stuff I open in a new window. Am I missing something?
Please help.]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
BFS.Web.OpenUrl isn't working on my computer, I'm not sure why. However, BFS.Web.OpenUrlNewWindow works fine except I don't want the stuff I open in a new window. Am I missing something?<br/>
<br/>
Please help.
</div>
]]></content:encoded>
</item>
</channel>
</rss>