Using message boxes and prompts
Our bot so far has dealt with four types of variables – String
, Datetime
, Boolean
, and Number
. They have values assigned to them using the assign action or are set as default values. We will now go through and modify our bot. Instead of assigning values using actions, we will replace this with actions from the Prompt package. As well as using the Prompt package, you will learn how to disable and enable actions for your bot.
In this walk-through, we will be performing the following tasks:
- Disabling Assign actions from the bot
- Adding Prompt actions for capturing
strFirstName
andstrSurname
- Outputting results as Message box
Let's start this walk-through by performing the following steps:
- Continuing with the same bot as before, to disable an action, you will notice the three vertical dots at the end of every action line in the development interface. Clicking on this will show the options menus. This gives you...