-
AE Scripting: Change value of a variable?
Is it possible to change the value of a variable based on whether or not the property is from an effect? Here’s what I’m trying, but I don’t get a change in value when selecting an effect property.
var myProp = selectProps.isEffect;
if (myProp == "false") var T = "cat";
else var T = "dog";