here’s what I came up with
val = thisComp.layer(“Control”).effect(“XPosition”)(“Slider”);
period = Math.floor(val/10);
offset = ease (val%10, 9, 10, period*10, period*10 + 100);
x = linear (offset, 0, 100, 600, 0)
I’ve redesigned the project a bit and am using the offset filter instead of position because of some 3D and scale issues.
Everything works except that I can’t go above 100 on the slider.
Thanks again for your help…