Name Table Entry

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.:joy:)

You create multiple GSCustomParameter and set their value and their name. Then you append it to font.customParameters.

https://docu.glyphsapp.com/#gscustomparameter

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 :rofl: Because I have to fill up the Mac name Table… :sob:
스크린샷 2023-04-26 오후 3.20.11

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 :rofl::rofl::rofl::rofl::rofl: Sorry for wasting your time!:face_holding_back_tears: This works great!! Thank you!!!