nolastan / sync.sketchplugin

Keep your design team in sync!
http://www.usesync.com/
MIT License
349 stars 15 forks source link

How to add text options like Underline or Bullet list #14

Open rodnem opened 8 years ago

rodnem commented 8 years ago

In the little cog, you can set some options... Can we add this to the google sheet? I try to add a new column called "Options" then fill the cell with Underline, but it doesn't works

nolastan commented 8 years ago

It's not just a matter of adding it to the google sheet; the plugin will need to be modified to support these attributes.

rodnem commented 8 years ago

I understand ;) but you when you find something great you try to push to the limits

nolastan commented 7 years ago

Alright, I figured out how to set the underline dynamically!

[textLayer addAttribute:NSUnderlineStyleAttributeName value:NSUnderlineStyleDouble]
[textLayer addAttribute:NSUnderlineStyleAttributeName value:NSUnderlineStyleSingle]
[textLayer addAttribute:NSUnderlineStyleAttributeName value:NSUnderlineStyleNone]

Noting here, will finish up later.