Page 1 of 1

How to Get all Nested Comps into an Array from current comp?

Posted: June 5th, 2015, 8:14 am
by manjunath7472
Can anyone please share a function() or idea ..to get all nested Comps into a single array from current active comp.??Am banging my head on wall to find atleast one property where its linked to Nested comp and Main comp in Project window.I saw "Reveal in Composition" is Linked to Parent Comp but no property in extended script guide.

AFX COMP
---------
MainComp(Precomp(Precomp(Precomp(Precomp))))

Script
--------
var myComp=app.project.activeItem;
var myLayers=myComp.layers;
var allComps= new Array();

for(i=1;i<myComp.numLayers;i++){
curLayer=myLayers;

if(curLayer.source instanceof CompItem==true){

allComps = function getAllNestedComps(??);


}