Actions ShowQuestion - thica/ORCA-Remote GitHub Wiki
This action open a separate page where the user can answer a question. Can be used to show a popup message as well
| Attribute | Description |
|---|---|
| string | showquestion |
| title | Title of the question-popup |
| message | Message for the question bar popup (normally the question) |
| actionyes | Name of the action to called, if the user presses the Yes button |
| actionno | Name of the action to called, if the user presses the No button |
| dontstopqueue | Doesn't stop the queue (if set to any value). As standard, the queue will be stopped until the answer to the question has been given. |
| close | Closes the question popup. Use it only, when you used the dontstopqueue flag |
A short example:
<action name="My Qustion" string="showquestion" title="Mytitle" message="MyMessage" actionyes="myYesAction" actionno="myNoAction"/>