Skip to content

Commit

Permalink
Update bot-tutorial-introduction.md
Browse files Browse the repository at this point in the history
  • Loading branch information
emgrol authored Nov 4, 2019
1 parent 46d0f97 commit 2cd4179
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/tutorial/bot-tutorial-introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,17 +48,17 @@ After creating your bot, Composer will load the new bot's `Main` dialog in the e

Each dialog contains one or more `Triggers` that define the actions available to the bot while the dialog is active. Right now the dialog is empty, so the bot won't do anything.

You will notice that the new bot is pre-configured with one trigger in the left dialogs window - `Handle ConversationUpdate`.
You will notice that the new bot is pre-configured with one trigger in the left dialogs window - `Conversation started (ConversationUpdate)`.

> Triggers help your dialog capture events of interest and respond to them using actions.
1. Click the `Handle ConversationUpdate` trigger in the left hand explorer.
1. Click the `Conversation started (ConversationUpdate)` trigger in the left hand explorer.

2. You will see a new flow has been added to the dialog.

![dialog](../media/tutorial-weatherbot/01/new-flow.png)

3. To help keep the bot organized, let's rename this trigger to something that describes what it does. In the `property editor` on the right side of the screen, click on the name of the trigger ("Handle ConversationUpdate"). You'll be able to update the title there, and the change will be instantly reflected in the dialog and navigation on the left. Rename ths trigger to:
3. To help keep the bot organized, let's rename this trigger to something that describes what it does. In the property panel on the right side of the screen, click on the name of the trigger ("Conversation started (ConversationUpdate)"). You'll be able to update the title there, and the change will be instantly reflected in the dialog and navigation on the left. Rename ths trigger to:

`WelcomeTheUser`

Expand Down

0 comments on commit 2cd4179

Please sign in to comment.