TLF Text - Negative leading values in TextFormat
TLF seems not supporting negative values for "leading" (like Classic text) ?!
This code :
var tf : TextFormat = new TextFormat();
tf.leading = -50;
myText.setTextFormat(tf);
works fine in "Classic Text" but not TLF.
in Both cases (Classic, TLF) the result os TRACE is the same:
trace (myText.getTextFormat().leading); // -50
But actually MINUS VALUES have no effect, and it is exactly the same as when leading is 0.
Any solution for this please?
Thanks a lot.
(Actual design when I apply different leading amounts based on a Function to the part BELOW horizontal line)

By the way, I also checked the same with "Arial" & "Tahoma", so it is not a unicode (Asian Fonts) issue.

