-
Can you fix my Script?
Hello! I’m trying to create an After Effects script that changes the position of the first layer of every comp in my project.
Here’s my current script:
————————————————–
var theComp = app.project.items;var theLayer = theComp.layer(1);
var changePos = theLayer.position;
changePos.setValue([540.0,1005.0,0.0]);
————————————————————-
It works when I put “activeItem” but not with “Items”