Can we initiate a dialog task from scripting node

Is it possible to initiate a dialog task from scripting node in bot builder platform?

Hello @supriya.hebbar ,

Through Context switching logic you can achieve a trigger of task based on context value.

For example, we have a particular condition for which we want to trigger a different dialog. In such case, in the script node for that condition, configure a context object and assign some unique value to it.

Then in the BotAction connections, if the context value equals that value, connect the node to a dialog node.

In this way we can trigger the dialog flow from script node. Let us know if this helps!!!

Thank you @sameera.tumuluri