You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thank you for this script, it works !
I just found a little problem when artwork left position is greater than 0, width is not calculated correctly.
To make it work you have to change line 85 from
var baseSize = artboard.artboardRect[2];
to
var baseSize = artboard.artboardRect[2] - artboard.artboardRect[0];
Tony
The text was updated successfully, but these errors were encountered:
Hi @kungfuters
Thank you for this script, it works !
I just found a little problem when artwork left position is greater than 0, width is not calculated correctly.
To make it work you have to change line 85 from
var baseSize = artboard.artboardRect[2];
to
var baseSize = artboard.artboardRect[2] - artboard.artboardRect[0];
Tony
The text was updated successfully, but these errors were encountered: