Update:
I got the numbers to do what I want.
I created a slider controller and using an expression to have the text change the same time I’m doing a animation with the Character Offset and Range Selector. This works great and does what I want to do.
I have one little issue I like to clean up and make easier.
I am using this expression on my main text layer;
s = “158 990,255 789”;
j = (thisComp.layer(“Text Controller”).effect(“Tote Control”)(“Slider”)*1);
s.split (“,”) [j];
on the 1st line I like to point the text to another source. For example:
s = thisComp.layer(“158 238”).text.sourceText,thisComp.layer(“255 789”).text.sourceText;
When I do this line 3 does not work.
Any suggestions on how to fix this expression?
Thanks.