Last active
August 24, 2022 02:10
-
-
Save MarissaJ/f9c808dc80eee2a95fc214893a8f9f55 to your computer and use it in GitHub Desktop.
After Effects Data Driven Expression- Display Column Data with Spaces
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(" "); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment