>I’m surprised, the >loopIn()/>loopOut() can’t be used as js methods, or can they?<
loopIn() and loopOut() are methods of the property object, so you can use them in that way and actually apply them to properties other than the one hosting the expression and stick the result in a variable. For example, you could have a rotation expression like this:
yLoop = position.loopOut()[1];
yLoop - time*25
but you can’t get loopOut() to process some arbitrary calculation you came up with in the same expression–it has to be attached to a property (defaulting to the property hosting the expression).