I am trying to input the information in fontinfo to instance with Python. But the resulting value is missing the information the customer wants. So I need to add [customParameters], but I can only add one [Name Table Entry]. I need multiple [Name Table Entry]. Is there a way to add it as a script? (I’m working on copy paste now.)
You create multiple GSCustomParameter and set their value and their name. Then you append it to font.customParameters.
Thank you so much for your reply!!! I did as it was in that URL, but only one [Name Table Entry] was added. what am i doing wrong? Can more than one be added? Like the photo image, I have to add a lot Because I have to fill up the Mac name Table…
parameter = GSCustomParameter("Name Table Entry", "1 1;…")
font.customParameters.append(parameter)
Wow wow wow thank you so much! I didn’t know it was so simple! Maybe my brain is not friend with Python Sorry for wasting your time!
This works great!! Thank you!!!