Answered
Can I parent my layer to another layer by script with the same effect like Shift + Pickwheep?
var layersList = app.project.activeItem.selectedLayers;
for (i=0;i<layersList.length/2;i=i+1){
layersList[i].setParentWithJump(layersList[i+(layersList.length)/2]);
}I have a working script, but the layers that oarent do not fit into their parents' places, as it would if I used Shift + Peekwheep in the after
Is there any method to do smtn like Shift + Pickwheep?
