I have a reference tag that is taking the actual position of an object and scaling it down to the screen specifications. I am trying to make the Raw Low, Raw High, Scaled Low, and Scaled High dynamically change based on the value of an expression tag that is in the same folder. I seem to be stuck and having trouble with this scaling. The expression tags work, it’s now down to how can I move that expression value into the reference tag property?
Unfortunately, you can’t actually bind those settings to a tag. You can bind them to a parameter if it’s part of a UDT, or you can write to those settings from an OnChange script on the other tag. system.tag.writeBlocking(‘[.]../ThisTag.ScaledLow’, whatevervalue) for example.