Last active
August 24, 2022 02:11
-
-
Save MarissaJ/d928f4e78066d799e78cf54e3422f73a to your computer and use it in GitHub Desktop.
After Effects Data Driven Expressions- Display Data Based on Row Number
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
n=Math.round(thisComp.layer("Data-Sample.csv")("Data")("Number of Rows")); | |
values = [];for(i=n-1;i<=n-1;i++) | |
{ values.push(thisComp.layer("Data-Sample.csv")("Data")("Outline")("Text Data")("Text Data " + i).value); } | |
values; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
For more on how to use this expression and download a sample After Effects 2019 file here https://www.fluxvfx.com/data-driven-expressions-for-after-effects-2019/