Skip to content

BurakKizilobek/Convert-After-Effects-Expressions-for-Jsx

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 

Repository files navigation

Convert After Effects Expressions for Jsx

If you have an expression with more than one line and want to apply it with a Jsx script, You have convert it like this:

Raw Expressions

// An After Effects expression:

var wiggleAmount = effect("Wiggle Amount")("Slider"); 
wiggle( 4, wiggleAmount );

Converted Expressions

// Converted expression for a jsx script:

'var wiggleAmount = effect("Wiggle Amount")("Slider");' + '\n' +
'wiggle( 4, wiggleAmount );'

Put your expressions in "exp.txt" and run the script. Your expressions in the txt file will be converted.

About

Convert After Effects Expressions for Jsx

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published