AdvancedHMI Software
General Category => Open Discussion => Topic started by: paaaaal on July 29, 2021, 06:24:35 AM
-
Helo Guys!
How can I add to Advanced HMI controls Analog value an timer.acc value I tried to Program:Timer[19].ACC but I got the same error: Path Segment Error (Invalid Tag Name)
Thanks in Advance
-
is the tag a program scope tag or a controller scope?
-
What Archie is getting at is your syntax is wrong.
If you timer is declared in the controller scope, your syntax would be: Timer[19].ACC
If declared in program scope, you have to include the name of your program in the syntax: Program:<ProgramName>.Timer[19].ACC
So if it were in a program called "Filler": Program:Filler.Timer[19].ACC
-
Thanks all, I found the corret tag name: Program:UN01.Timer[19].ACC