Skip to content

Instantly share code, notes, and snippets.

@animoplex
Created December 22, 2018 07:04
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save animoplex/8ab3afc99d4f0a662a6b049103567d48 to your computer and use it in GitHub Desktop.
Save animoplex/8ab3afc99d4f0a662a6b049103567d48 to your computer and use it in GitHub Desktop.
Universal Expression Syntax - After Effects Expression by Animoplex
// Universal Expression Syntax - Created by Animoplex: www.animoplex.com
// The different types of expression syntax in After Effects and how to make them compatible in any language.
// Full Tutorial: https://www.youtube.com/watch?v=b1MxtywoqHg&t=192s
// Default Compact Expression:
effect("Fill")("Color")
// Basic Universal Expression (Property Index):
// Replace the effect property’s name with the property’s index.
// Give the effect object a custom name to avoid any localization errors.
effect("Custom Fill Name")(3)
// True Universal Expression (Matchname):
// Check out Gimme Prop Path: http://www.redefinery.com/ae/view.php?item=rd_GimmePropPath
effect("ADBE Fill")("ADBE Fill-0002")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment