MareroQ wrote:
Thanks for the new version.
My first surprise (though great features):
Lateral wiggle, Vertical wiggle, Tilt wiggle only random?
In particular, Tilt wiggle should be available as a new option - right-to-left text (not inverted) and frequently searched options from top-to-bottom.
This add-on does not require much coding (I changed it for my own needs) - but it can be very useful for many users.
Superficially, yes, but the devil is in the details(*).
If you reverse the characters (Stunfo) the kerning is on the wrong side. If you need this you can just as well provide the reversed text and reverse the path direction.
For vertical text the script computes a position using the character width, so if you make the text vertical this position is likely wrong. There is also no easy way to tell the actual height of a character... So vertical text implemented the quick-and-dirty way will only work with all-uppercase text (hoping for no diacritics over the letters) and a fixed width font (otherwise, letters such as "I" will be squeezed vertically). IMHO vertical text implemented properly is another (quite different) script.
(*) about three quarters of the code is caring about the details...