08.08.14, 15:24
is there a combination of a scripthographer plugin with a cs# that does work good? Like is support for cs3 better, cause atm it's total fail.
even this gives different sizes everytime i run the script:
var text = new PointText(new Point(50, 100));
text.content = 'The contents of the point text';
text.characterStyle.tracking = 100;
var xWords = text.range.words.length;
var xCharacters = text.range.characters.length;
print("xWords: "+xWords);
print("xCharacters"+xCharacters);
for (var i=0; i<xCharacters; i++){
print("text.range.characters[i].content: "+text.range.characters[i].content);
text.range.characters[i].characterStyle.fontSize = 10;
}