Last active
August 24, 2022 02:10
-
-
Save MarissaJ/0cc2f3926c5e80207d145d89fa7dbb70 to your computer and use it in GitHub Desktop.
After Effects Data Driven Expression- All Column Data with Line Break
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
values = []; | |
for(i=0;i<=thisComp.layer("Data-Sample.csv")("Data")("Number of Rows")-1;i++) { | |
values.push(thisComp.layer("Data-Sample.csv")("Data")("Outline")("Text Data")("Text Data " + i).value); | |
} values.join("\n"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment