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