Open a digital form right away

My team and I are facing a problem with forms in which users don’t understand the form node. Instead of clicking the button to open an inline form, they reply to it direcly, causing an error. Is there a way to directly open it on a message?
Here is a screencap of the incorrect use case we’re seeing:

Hello Mauricio,

Welcome back to Kore.ai Community.

Could you please try the below and let us know if that works for you ?

In the dialog flow, add a Script Node before the Digital Form.
Use the following script to initiate the form immediately:

context.triggerForm = true;
  • Configure the Digital Form Node:
  • Add the Digital Form node in your dialog task right after the Script Node.
  • Ensure the form trigger condition does not require a preceding user prompt by directly allowing the form to open based on context variables (like triggerForm set above).

Modify Settings for Auto-Initiation:

  • If using Conditional Transitions, set the transition to the Digital Form node directly based on the context.triggerForm value.

Hope this helps.

Thank you,
Srujan Madderla
Kore.ai Community Team

Thank you very much for your reply.
I tried this, and it did not work. Maybe it has something to do with that I can’t directly use a script node in bots platform? I have to put it inside a bot action node, and then connect it to the digital form.
Here’s a screen capture of what I did:


Again, thanks for your help.