-
setValue() to levels effect not returning expected value
New to scripting here…
I’m trying to add a levels effect to a composition and set the value for “Input Black” and “Input White”However, when I run the script in After effects I see values thousands above what I put in.
Here is my code:
myComp.property(“Effects”).property(“Levels”).property(“Input Black”).setValue(118);
myComp.property(“Effects”).property(“Levels”).property(“Input White”).setValue(141);The value I get in After Effects are:
Input Black = 30090
Input White = 35955On my last line of my code, I even added an alert to tell me the value of input white.
alert( . . . (“Input White”).value);
It said the value for input white was 141 so I know nothing later in the code is changing it.What am I not understanding?
myComp.property("Effects").property("Levels").property("Input Black").setValue(118);
myComp.property("Effects").property("Levels").property("Input White").setValue(141);