I want to change the Color of "Ortsname" in JavaScript, im using:
var relieflackEbene = myDoc.layers.itemByName('Relieflack');
to select the Layer "Relieflack" but when using
relieflackEbene.pageItems.firstItem().strokeColor = "Relieflack";
actually i dont want to use "firstItem()" because it might not be the first item on that Layer. But it is changing the color of the Textbox, not the color of the Text inside it.
Any hints?