Copy link to clipboard
Copied
I have a TextFrame ="abc", i create outline text "abc".
After change from text to abc: Can i get content of outline text?
Copy link to clipboard
Copied
No, you can't. It'll be character recognition.
P.
Copy link to clipboard
Copied
Hi,
false option for `.createOutlines` remain original textframe.
textframe.createOutlines(false)
or
you can add label or name to outlined text.
var textframe_contents = textframe.parentStory.contents
var outlined_group = textframe.createOutlines()
outlined_group[0].label = textframe_contents
thank you
mg.