-
Break a time remap expression
Hi people, another rookie in expressions.
here is my problem:I have a composition with time remap and a expression:
state=comp(“comp_1”).layer(“character”).effect(“outfit”)(“ADBE Slider Control-0001”);
framesToTime(state);
Null with a slider that is controlling a time remap.
I wont to break expression with a checkbox and be able to controll the compositions frame number with another null and a slider.My humble opinion is to use if/else command.
I managed to do similarly with this exspression:effect(“default”)(“Slider”)
if (effect(“dafault_character_on/off”)(“Checkbox”).value)
{effect(“default”)(“Slider”)
}else
valuein general I need to break a time remap expression (that is controll by a slider) with checkbox and use another slider to control the same composition.
Thanks in advance.