this is weird. I’m using CC2015 and sourceRectAtTime doesn’t update properly for me.
My text is set up so that it appears over time via an animated slider:
n=thisComp.layer("john.doe@me.com").effect("Tipp Counter")("Slider");
showtext=text.sourceText.substr(0,n);
now I want to attach a blinking cursor to the appearing text at the end.
L = thisComp.layer("john.doe@me.com");
r = L.sourceRectAtTime(time,false);
fromComp(L.toComp([r.left+r.width,r.top+r.height]))
The value is not being updated over time and the value itself is nowhere near it should be.
I also checked what happens with the width of sourceRectAtTime and it doesn’t update either when used solo.
Any insight as to what I’m doing wrong? Or is there a bug I’m missing.
Thanks!