-
using an expression selector to select just certain charactor values?
Would it be possible to select certain character values using an expression selector?
The reason I want to do this is the particular font that I have to use has a numeral “1” with a little more space after it than the client would like. Normally I would just kern it by hand, but I have a counter where the value is animated by an expression. Therefore I cannot set tracking values on a per character basis without an expression.
I would like to do something like the following, but I don’t know the correct syntax.
for(var i=0;i<textTotal;++1)
{
if(textIndex[i] == "1") value; else 0;
}