I have three compositions ( compFinal
, compSlide1
and compSlide2
).
I used a script to add compSlide1
and compSlide2
in the composition compFinal
.
I use the following code to add songs:
compFinal.layers.add(compSlide1);
compFinal.layers.add(compSlide2);
But when you insert them into compFinal
both compositions compSlide1
, compSlide2
they will have the same start time "0".
When adding a song, compSlide2
I want me to be able to set the start time displayed for composition 2 to be equal to the endcompSlide1

source
share