Answered
PPro components setValue doesn't update text
Hi, guys I am trying to change the text component source value
When I run the code below with getValue() I get some weird results: like. Ÿ or O
for (var i = 0; i < clip.components.numItems; i++) {
var component = clip.components[i]
$.writeln('Component: ' + component.displayName.toString())
for (var k = 0; k < component.properties.length; k++) {
var prop = component.properties[k]
$.writeln('\t' + prop.displayName.toString() + ': ' + prop.getValue().toString())
}
}
and if I call setValue to one of those sourceText objects it actually updates value in system (Check the screenshot), but in UI the old text is still there

