Page 1 of 1

Wait for user interaction

Posted: 10 May 2018 08:13
by TheUnknownBuffalo
I have a workflow that autostarts, and I want to add some kind of button to be displayed to wait for user interaction, and the workflow is paused until the user hits go? an example:

workflow automatically starts at x time
part of the workflow is executed
workflow displays button 'GO' and pauses until the button is tapped
once user taps 'GO' the workflow carries on

Re: Wait for user interaction

Posted: 12 May 2018 00:32
by digitalstone
A button, you mean like a widget?

What i would do is:
- Make that widget (or whatever it is you want to start this flow with) and setup an 'action' inside to execute your flow (this very flow that you're talking about).
- The first flow element after the trigger element should be an "Expression" condition.
- The expression should be:

Code: Select all

trigger=="Automagic Startup"
From here you can branch off from:
- True, when the flow is actually is self-triggered.
- False, when the flow is triggered by anything else.

Re: Wait for user interaction

Posted: 14 May 2018 17:13
by Desmanto
Maybe just use Condition - Confirmation Dialog? There is a yes no button you can put there, true go to your main flow's branch.