-
Scripting: Change layer marker attributes
Hi there,
I want to alter attributes of existing layer markers via ExtendedScript. But something like:
app.project.item(50).layer(3).property("Marker").keyValue(1).comment = "New comment!";doesn’t work at all. I mean there’s no error message or something like this. But the actual value won’t change in the UI, and retrieving the value via script with:
$.writeln(app.project.item(50).layer(3).property("Marker").keyValue(1).comment)after assigning a new one is returning the previous (unaltered) value instead. This is weird somehow. The documentation says these attributes on MarkerValue objects are “read” AND “write”. Did I get something wrong?
Thanks,
Peter