I have three compositions ( compFinal, compSlide1and compSlide2).
I used a script to add compSlide1and compSlide2in 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 compFinalboth compositions compSlide1, compSlide2they will have the same start time "0".
When adding a song, compSlide2I want me to be able to set the start time displayed for composition 2 to be equal to the endcompSlide1

source
share