Hey Scriptguru's
I made a custom font and I have some issues with the glyph on the spacebar.
Mylenium told me it is possible to automaticly replace a character with expression.
Text layer 1: Here we type the text: ex. We love Aftereffects
Text layer2: We need to automaticly replace the 'spaces' with '£' sign. result: We£love£Aftereffects
How in hell do you do that?
Thanks.
This should work:
thisComp.layer("Text layer 1").text.sourceText.replace(/ /g,"£")
Dan