Hi,
I am trying to write to a Memory tag from a custom property that is updated by its binding when its updated my script looks like this
def valueChanged(self, previousValue, currentValue, origin, missedEvents):
tagPath = "[default]Path/To/Your/MemoryTag"
value = "self.custom.Value"
system.tag.writeAsync([tagPath], [value])
I know I’ve done something wrong but I can’t find it