<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>How to build an advanced bot on asdfasdfasdfasdfddd</title><link>https://academy.test.quriobot.com/how-to-build-an-advanced-bot/</link><description>Recent content in How to build an advanced bot on asdfasdfasdfasdfddd</description><generator>Hugo -- gohugo.io</generator><language>en-us</language><atom:link href="https://academy.test.quriobot.com/how-to-build-an-advanced-bot/index.xml" rel="self" type="application/rss+xml"/><item><title>A/B testing the bot jump logic branches</title><link>https://academy.test.quriobot.com/how-to-build-an-advanced-bot/a-b-testing-the-bot-jump-logic-branches/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://academy.test.quriobot.com/how-to-build-an-advanced-bot/a-b-testing-the-bot-jump-logic-branches/</guid><description>If you want to create custom jumps based on the A/B experiment value you will need to do the following:
Step 0: Enable developer mode:
Step 2: Add a script variable, name - experiment, type - script:
function(callback, variables) { // The `callback` argument has to be called with the result value in order to support the async operations. The `variables` argument is an object containing other variables var experiments = [&amp;#39;1&amp;#39;, &amp;#39;2&amp;#39;, &amp;#39;3&amp;#39;]; var experiment = experiments[Math.</description></item><item><title>Add cool looking apps like Spotify, Soundcloud or GoFundMe to your bot</title><link>https://academy.test.quriobot.com/how-to-build-an-advanced-bot/add-cool-looking-apps-like-spotify-soundcloud-or-gofundme-to-your-bot/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://academy.test.quriobot.com/how-to-build-an-advanced-bot/add-cool-looking-apps-like-spotify-soundcloud-or-gofundme-to-your-bot/</guid><description>Add something like Spotify or Soundcloud makes your bot super cool, but is also super easy!
just follow these steps:
Add a new chat message and select HTML as the Chat text type: Add the following code (this isexample code): &amp;lt;!-- for making it fit the chatbuble perfectly--&amp;gt; &amp;lt;p style=&amp;#34;display: none&amp;#34;&amp;gt;1&amp;lt;/p&amp;gt; &amp;lt;div style=&amp;#34;border-radius: 9px; overflow: hidden&amp;#34;&amp;gt; &amp;lt;!--actual iframe--&amp;gt; &amp;lt;iframe width=&amp;#34;100%&amp;#34; height=&amp;#34;300&amp;#34; scrolling=&amp;#34;no&amp;#34; frameborder=&amp;#34;no&amp;#34; allow=&amp;#34;autoplay&amp;#34; src=&amp;#34;https://link_to_the_service_here&amp;#34; style=&amp;#34;border:none;display: block;&amp;#34;&amp;gt;&amp;lt;/iframe&amp;gt; &amp;lt;/div&amp;gt; Example for Spotify: &amp;lt;p style=&amp;#34;display: none&amp;#34;&amp;gt;1&amp;lt;/p&amp;gt; &amp;lt;div style=&amp;#34;border-radius: 9px; overflow: hidden&amp;#34;&amp;gt; &amp;lt;iframe src=&amp;#34;https://open.</description></item><item><title>Automatic call functionality (connected to your phone or software like Skype)</title><link>https://academy.test.quriobot.com/how-to-build-an-advanced-bot/automatic-call-functionality-connected-to-your-phone-or-software-like-skype/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://academy.test.quriobot.com/how-to-build-an-advanced-bot/automatic-call-functionality-connected-to-your-phone-or-software-like-skype/</guid><description>Adding automatic calling options can be a very nice addition to your bot: A consumer selects the option to call (via a link, for example) which is connected to the phone solution on their mobile or a software solution like Skype if they use the bot on their desktop.
All you need to do is create a Chat Message link type and use tel: as the link + use the parent as the link target:</description></item><item><title>Book a meeting via Calendly and Quriobot</title><link>https://academy.test.quriobot.com/how-to-build-an-advanced-bot/book-a-meeting-via-calendly-and-quriobot/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://academy.test.quriobot.com/how-to-build-an-advanced-bot/book-a-meeting-via-calendly-and-quriobot/</guid><description>Those awesome guys at Calendly build something truly great: you connect your own agenda and unleash it to the web so anyone can book a meeting straight into your agenda!
So how about combining Calendly and Quriobot and book it straight via Quriobot? Ok!
So what we will do is create an easy bot template that will ask for a person&amp;rsquo;s name and email address, connect and set up your calendar in Calendly and combine forces!</description></item><item><title>Can I make the bot do calculations?</title><link>https://academy.test.quriobot.com/how-to-build-an-advanced-bot/can-i-make-the-bot-do-calculations/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://academy.test.quriobot.com/how-to-build-an-advanced-bot/can-i-make-the-bot-do-calculations/</guid><description>Of course, you can! It&amp;rsquo;s a bot, what did you expect? ;)
But it does need a bit of an adventurous mind, as you will need to write some JavaScript code!
We will make use of the Script variables.
Step 0: enable developer mode
Step 1: create step variable(s) to be used as input for our calculation:
Step 2: create script variable which does the calculation using the other variables:</description></item><item><title>Change your website pages keeping the bot in the context</title><link>https://academy.test.quriobot.com/how-to-build-an-advanced-bot/change-your-website-pages-keeping-the-bot-in-the-context/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://academy.test.quriobot.com/how-to-build-an-advanced-bot/change-your-website-pages-keeping-the-bot-in-the-context/</guid><description>If you need your bot to `follow` the user when it redirects the user to a different page, you can follow these steps:
Step 1. Create a response for a step with `next `with such settings:
Note that we&amp;rsquo;ve enabled the &amp;rsquo; F ollow the redirect&amp;rsquo; option.
The bot will then continue where you left it on the previous page (given it&amp;rsquo;s embedded on it)!
NOTE: storing of the state is disabled in the preview mode for easier debugging</description></item><item><title>CSS customization for your bot design</title><link>https://academy.test.quriobot.com/how-to-build-an-advanced-bot/css-customization-for-your-bot-design/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://academy.test.quriobot.com/how-to-build-an-advanced-bot/css-customization-for-your-bot-design/</guid><description>You can add custom CSS to fully customize the look and feel of your bot and the landing page if the design settings are not sufficient:
These are just some examples for you to play around with, hopefully, it leads to something amazing!!
#qre{ background: url(&amp;#34;https://example.com/cover.jpg&amp;#34;); background-size: cover; } html{ overflow: hidden; bottom: 0px; position: fixed; left: 0px; } .input--inner{ border-radius: 1px 10px 1px 10px; } .input-error{ width: 90%; margin-left: 5%; } .</description></item><item><title>Custom jumps (and response) based on device types</title><link>https://academy.test.quriobot.com/how-to-build-an-advanced-bot/custom-jumps-and-response-based-on-device-types/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://academy.test.quriobot.com/how-to-build-an-advanced-bot/custom-jumps-and-response-based-on-device-types/</guid><description>If you want to create custom jumps based on the device type you will need to do the following.
Example : that will detect if you&amp;rsquo;re on a mobile device (and exit the bot or otherwise continue to Step 2).
Note: this might be helpful if, for example, you don&amp;rsquo;t want to show the Fold-out step on mobile devices
Step 1: Add a GoTo Step that uses the value of this variable ({{infoDeviceType}} in this example) and create your Response and corresponding Jump logic based on the value</description></item><item><title>How can I start/stop or switch bots via my own website buttons?</title><link>https://academy.test.quriobot.com/how-to-build-an-advanced-bot/how-can-i-start-stop-or-switch-bots-via-my-own-website-buttons/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://academy.test.quriobot.com/how-to-build-an-advanced-bot/how-can-i-start-stop-or-switch-bots-via-my-own-website-buttons/</guid><description>This is quite easy to do with a bit of JavaScript magic in combination with the three JS functions to achieve this:
So, for example, say you have a button with which you want to start the bot and another one to hide (or stop) the bot. All you need is to combine the following 3 elements:
HTML page with those buttons. The describedJS functions (and in this example some AjaxJS via jQuery)</description></item><item><title>How to add an audio to your Quriobot from the other services</title><link>https://academy.test.quriobot.com/how-to-build-an-advanced-bot/how-to-add-an-audio-to-your-quriobot-from-the-other-services/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://academy.test.quriobot.com/how-to-build-an-advanced-bot/how-to-add-an-audio-to-your-quriobot-from-the-other-services/</guid><description>We have a dedicated sound chat text type where you can upload the audio file. But also you can embed the audio content from the other services like SoundCloud via the IFRAME.
1. Go to SoundCloud and upload your audio file:
2. Choose your file —&amp;gt; Share —&amp;gt; Embed. Copy your audio embed code:
3. Get back to your bot. Add a new chat message and select Embed as the Chat text type and put the previously copied embed code.</description></item></channel></rss>