-
Copy Text Using Expressions
Hi
I’m trying to copy the source text of one layer, and making it into a wall of that name as a background element. I want to use expression to copy the text, to make it dynamic.I put the following code in as an expression on the source text of a “copy” layer, trying to copy the “Name” layer using a for loop:
name = thisComp.layer("Name").text.sourceText
for(i = 0; i < 5; i++) {
name = name + "\r" + name
}Any help is appreciated
Thanks
name = thisComp.layer("Name").text.sourceText
for(i = 0; i < 5; i++) {
name = name + "\r" + name
}

