Activity › Forums › Adobe After Effects Expressions › Time Remap frame controller based on the position of a null object
-
Time Remap frame controller based on the position of a null object
Alex Richman replied 7 years, 9 months ago 4 Members · 13 Replies
-
Alex Richman
November 13, 2018 at 7:26 amHello Dan!!! This code solved my problem! But composition reacting only when i move null object “x” how i can make reacting to y? I change all “x” to “y” in code but it doesn’t work:(((
y = thisComp.layer("Null 1").transform.position[0];
d = y - thisComp.width/2;
framesToTime(linear(d,200,-200,0,88)) -
Dan Ebberts
November 13, 2018 at 7:48 amI guess it would be like this:
y = thisComp.layer(“Null 1”).transform.position[1];
d = y – thisComp.height/2;
framesToTime(linear(d,200,-200,0,88))Dan
Reply to this Discussion! Login or Sign Up