-
Updating the comment on a marker using ExtendScript
Hello,
I added some layer markers and I want to change the comment via ExtendScript.I tried:
var textLayer = mainComp.layer("textLayer")
var nKey = textLayer.marker;
for (i = 1; nKey.numKeys; i++) {
markerVal = textLayer.markerProperty.keyValue(i);
markerVal.comment = "comment" + i;
textLayer.markerProperty.setValueAtKey(i, markerVal);
}
But so far nothing is working…
Any help appreciated!
Fabrice.
Sorry, there were no replies found.