Hi all,
A couple more newbie questions. My SCADA background is mostly FTView, so I'm trying to figure out the AdvancedHMI way of doing a couple of things.
First, on FTView I can create reusable popups by using placeholder tags. So, for a Motor popup, my start buttons is set to operate on #1.Start, my Stop button is set to operate on #1.Stop, and so on. Then, at runtime, I call the popup and specify which PLC tag to use in place of #1 by either parameter files or just defining the tag directly when I call the popup. So I specify Motor_1, and then #1.Start becomes Motor_1.Start and so on. Can I create reusable popups somehow in AdvancedHMI?
Second thing I can do in FTView is to display multiple tag values in one text object. This would be useful in one particular example where I'm using a Click Koyo PLC and want to display a date-and-time stamp. Ideally, I'd just use system data values to concatenate a string of the date and time within the PLC, and just display that string on the HMI, but the Click Koyo is pretty limited in it's string handling, and I can't find a nice neat way to do it. So, what I'd do to get around this in FTView is just create some text, where the caption was:
"Time of Event: [year_tag]-[month_tag]-[day_tag] at [hour_tag]:[minute_tag]:[second_tag]"
So I only need one text object, not one for each value and another for each separator. Can I do something similar in AdvancedHMI?
Thanks!