I'm trying to see how far my text animator is through its animation so I can affect something else. However, when I do this via a pickwhip: end = thisComp.layer("BoxText").text.animator("Animator 1").selector("Range Selector 1").end; ... it's giving me an object, not an actual value. I know this, because I have a text object I'm using to print out values for texting and when I try to toString the "end" value, it's giving me [object Layer]. What I want is the value, like ".33" or something. I'm still a bit of a newb, sorry. Maybe there's a better way to do this. I have a text object that can be multiple lines. Regardless of the number of lines, I want each to slide up into place as a whole, from hiding behind a mask of some sort. So, line 1 slides up into place from under a mask, then line 2 which was invisible slides up under line 1, appearing the same way 1 did, etc. Thx!
... View more