Question
How to get the mixed up character properties (normal font with superscript) from the same text layer
Hi
is it possible to set superscript character in TextDocument by scripting?
I have TextLayer with text: 01st 03rd , this is downloaded from api url
And i want to set superscript for st and rd characters.
var textProp = layer.property("Source Text");
var textDoc = textProp.value;
textDoc.text = content.value; // <--- here is value from api
textProp.setValue(textDoc);
thanks for your hints.
