Hi,
I would like to output the various steps of the Bot actions in my Bot interface so the user knows what the bot is currently doing as:
Bot started!
Bot Paused!
Bot Stopped!
Bot doing XYZ
I have already created a variable called "warningMessages" and in my Bot interface, added a new "User Control"
In the user control, I have set the variable name to warningMessages and the Bind id to "messageWarnings"(the opposite way around). Now in my html code I have this:
When I run my code, the variable gets its first value of "Bot started!" in the variable "warningMessages" but I do not see the message in the above div, any idea why?
Can the BOT UI show variables in real-time by the way?
Thank you
I would like to output the various steps of the Bot actions in my Bot interface so the user knows what the bot is currently doing as:
Bot started!
Bot Paused!
Bot Stopped!
Bot doing XYZ
I have already created a variable called "warningMessages" and in my Bot interface, added a new "User Control"
In the user control, I have set the variable name to warningMessages and the Bind id to "messageWarnings"(the opposite way around). Now in my html code I have this:
Код:
<div type="user_control" id="15" bind_id="messageWarnings" bind_attribute="" default_value="" class="fixed form-group user-control" style="top: 440px; left: 190px; Width: 650px; Height: 42px" anchorleft="1" anchortop="1" anchorright="0" anchorbot="0" min_width="0" min_height="0" variable_name="messageWarnings"></div>
Can the BOT UI show variables in real-time by the way?
Thank you