Can you help me fix my After Effects SCRIPT?
Hello! I'm trying to change the position of the first layer of all the comps in my After Effects project. This script works with "activeItem" but doesn't work with "items." Can someone help me fix it?
Script:
------------------------------------------
var theComp = app.project.items;
var theLayer = theComp.layer(1);
var changePos = theLayer.position;
changePos.setValue([540.0,1005.0,0.0]);