-
pull layer’s comp name?
Hey all, quick expression question:
If I have declared a layer in a variable:
L = comp("Comp 1").layer("Shape Layer 1");
can I later pull the comp name for L? e.g. (doesn’t work)
N = L.propertyGroup(1).nameor do I need to declare them individually?
C = comp("Comp 1");
L = C.layer("Shape Layer 1");
n = C.name;
I would really prefer to declare as a single line (as this will half the time be pickwhip’d, half not), so if it’s at all possible I’d love to hear!Alex Printz
Mograph Designer