This content has been marked as final.
Show 4 replies
-
1. Re: Ask: changing text in two different comp
Dan Ebberts Apr 16, 2018 6:21 AM (in response to ryuuzakihideki)1 person found this helpfulIf you apply an expression like this to the text in comp2:
comp("comp1").layer("text").text.sourceText
it will get the text from comp1, but will get its font from its own first character. So you can't maintain multiple fonts in that text, but you can maintain the font of the first character.
Dan
-
2. Re: Ask: changing text in two different comp
ryuuzakihideki Apr 16, 2018 7:40 AM (in response to Dan Ebberts) -
3. Re: Ask: changing text in two different comp
Dan Ebberts Apr 16, 2018 9:10 AM (in response to ryuuzakihideki)1 person found this helpfulWell, you would have to use the actual name of your text layer:
comp("Comp 1").layer("Text 1").text.sourceText
Make sure you explicitly name the text layer so it doesn't change when you change the text itself.
Dan
-
4. Re: Ask: changing text in two different comp
ryuuzakihideki Apr 17, 2018 9:17 AM (in response to Dan Ebberts)WOW.. Amazing it works..
thank you so much mr. Dan...