This content has been marked as final.
Show 4 replies
-
1. Re: transform.position creates offset effect
Mylenium Jun 28, 2012 8:28 AM (in response to mombartz)Effect coordinates are relative to the layer and unless the layer matches the comp size, this won't work. You need to subtract the differences in width and height to compensate.
Mylenium
-
2. Re: transform.position creates offset effect
mombartz Jun 28, 2012 8:53 AM (in response to Mylenium)thanks for the reply Mylenium!
you mean i need to subract the difference in width and height between layer and comp from the effect? how do i do that?
-
3. Re: transform.position creates offset effect
Mylenium Jun 29, 2012 3:53 AM (in response to mombartz)Like so:
diffX=thisComp.width-width; diffY=thisComp.height-height; X=value[0]+diffX; Y=value[1]+diffY; [X,Y]
Apply this to your magnify crosshair control or whatever and adjust as needed.
Mylenium
-
4. Re: transform.position creates offset effect
Dan Fredley Jun 29, 2012 3:58 PM (in response to mombartz)If you put the Magnify effect on an adjustment layer you can put this on the Center property of the Magnify effect:
L = thisComp.layer("Loupe.psd");
thisLayer.fromComp(L.toComp(L.anchorPoint))





