I am using many messagebox to display the status if no user input after 3 seconds it has to click ok and proceed to next step? how to achieve it please?
Hi @Sathish_Ashokan
Specify time in the properties of properties Automatically close after,It will close the message box automatically after that specified time.
Hope it helps!!
Hello @Sathish_Ashokan
Sequence: Handle MessageBox Timeout
Parallel: Run two sequences concurrently
Sequence: Sequence for MessageBox
MessageBox: Text="Your message here. Click OK within 3 seconds." Caption="Message" Buttons="OK" Icon="Information" Result="[userInput]"
End
Sequence: Timeout handling sequence
Delay: Duration="3000" 3 seconds timeout
Assign: [userInput] = "OK" Default value if no user input within 3 seconds
End
If: [userInput = "OK"]
Your activities for 'OK' case
End If
Thanks & Cheers!!!
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.