Get charString of selected layers?


What’s the best way to do this? I have a script that lets one insert a glyph you type into a textbox and add it between each selected glyph. But right now I must enter it in the /string format…

This sounds useful!

the font object has a method:

- (UTF32Char)characterForGlyph:(GSGlyph*)Glyph;

to call it from python:

char = font.characterForGlyph_(glyph)
1 Like