Search found 3 matches
- Wed Dec 04, 2019 10:35 am
- Forum: Application Development
- Topic: Expressions with multiple global variables
- Replies: 2
- Views: 6172
Re: Expressions with multiple global variables
Try adding the SystemTagSecond and setting it as the Dynamic tag (instead of the GV102_VA11YZSL tag) The expression is only evaluated when that assigned tag value is changed, so setting it to the second tag means it will evaluate the expression every second Thank you very much for the answer, Russ....
- Fri Nov 29, 2019 5:57 am
- Forum: Tags
- Topic: Tag write expression
- Replies: 1
- Views: 7622
Re: Tag write expression
Have you tried instead of (value << 4) doing (value*16)? Maybe it will get around with variable type issues and get the same results.
- Thu Nov 28, 2019 8:00 am
- Forum: Application Development
- Topic: Expressions with multiple global variables
- Replies: 2
- Views: 6172
Expressions with multiple global variables
I need to change the filling color of an object based on two Bit tags. for example, status_L and status_H are two bit tags. In an older system, the expression (status_H + 2*status_L) is evaluated and the fill color is set according to the table: 0 - gray 1 - Red 2 - Green 3 - gray Now im trying to d...