Hi Dan. I had hoped I could add, say, a checkbox control: if checked, let the loop progress; if unchecked, keep the loop where it was when the checkbox value was changed (on a particular keyframe). But that threw errors: I didn’t know what to use for an else condition, and the loopOut() itself didn’t work. Something like this:
allowLooping = thisComp.layer(“N FX”).effect(“Checkbox Control”).value;
if (allowLooping)
{
loopOut();
}
else
{
// ?!
}
But, obviously, that’s broken. Thanks again for asking!