Hi Dan,
Here is what I ended up with to adjust for hand anchor position versus where I will attach his rappelling rope to the null. Also used the same basic expression for the top hand.
Thank you,
Mac
/* Left Hand xPosition */
L1 = comp(“rappeller”).layer(“man hand lf”);
p1 = L1.toComp(L1.anchorPoint);
L2 = thisComp.layer(“rappeller”);
p2 = L2.toComp(p1);
p2[0]-5
/* Left Hand yPosition */
L1 = comp(“rappeller”).layer(“man hand lf”);
p1 = L1.toComp(L1.anchorPoint);
L2 = thisComp.layer(“rappeller”);
p2 = L2.toComp(p1);
p2[1]+5
/* Right Hand xPosition */
L1 = comp(“rappeller”).layer(“man hand rt”);
p1 = L1.toComp(L1.anchorPoint);
L2 = thisComp.layer(“rappeller”);
p2 = L2.toComp(p1);
p2[0]-5
/* Right Hand yPosition */
L1 = comp(“rappeller”).layer(“man hand rt”);
p1 = L1.toComp(L1.anchorPoint);
L2 = thisComp.layer(“rappeller”);
p2 = L2.toComp(p1);
p2[1]-8