I’m trying to modify an item in an instance of a flex repeater in script. So I get my array of instances like this:
alloys = self.getChilde('rptr').props.instances
When I attempt to change a value like such:
for alloy in alloys:
alloy['item'] = newValue
No error is raised but the value is never changed. I noticed that the type for this is PropertyTreeScriptWrapper and not a dict like I would have expected. Is there a way to cast that to a dict or do I need to use that objects interface to change a value. (Seems unnecessarily convoluted).