-
Parent child linking – applying correct scale.
Hi.
I need to tweak this expression a little
L = thisLayer;
s = transform.scale.value;
while (L.hasParent){
L = L.parent;
for (i = 0; i < s.length; i++) s[i] *= 100/L.transform.scale.value[i] } s This disables the scaling behaviour between parent/child layers (many thanks Dan for this excellent expression) I'm unfortunately still going to need to retain control over each layers scale independently of it's parenting, can this expression be tweeted to still allow for control of scale from a null object? I'm using a nulls y rotation as the controller. which looks like this. temp = thisComp.layer("Null 2").transform.yRotation; [temp+100, 100, temp+100] Dan? as this was your brain child perhaps you could help me a little further? you know the layers I'm using are parented, we've basically stopped them from carrying out this accumulative scaling behaviour (where one layer scales by the value of all the parented layers in the stack before it) now I need to give each of the free layers the correct scaling information that they do need, without effecting the scales of the other parented layers in the stack. Does that make sense? Coda - musical selections; in film, the ending or last section of a film (often wordless).

