Question
How do I change the color of two words in my source text.
Hey there,
I have a great little expression that generates a sentenance.
compName = thisComp.name;
textBefore = "The amount totals to ";
textAfter = ".";
textBefore+compName.substring(0, compName.indexOf("-"))+textAfter;The amount totals to five.
How do I change the color of the compName and textAfter values?
I
