Activity › Forums › Adobe After Effects Expressions › Highest Keyframe Value
-
Dan Ebberts
January 12, 2022 at 10:50 pmTry it this way:
p = thisComp.layer("Shape Layer 1").transform.position; max = p.value[0]; for (i = 1; i <= p.numKeys; i++){ max = Math.max(max,p.key(i).value[0]); } max
Reply to this Discussion! Login or Sign Up