I have a text field that I would like to put a script on which would write that value entered into a few tags defined in the script. I know in vision you can use the propertychange event handler but I do not see anything like that in perspective. How would I go about doing this in perspective?
What about
values = [currentValue.value]*len(paths)

paths = ['a', 'b']
values = ['x' for path in paths]
print(values)
['x', 'x']
values = ['x'] * len(paths)
print(values)
['x', 'x']
Same result.
