Your first step is to create a null called “Controller”. Add an expression control slider to it and name that slider “curr layer”. Add the following expression to that slider:
duration = .5; //length of each cut in seconds
numLayers = 4;//Number of layers you want to switch between
//These layers must be the uppermost layers in the comp
(Math.floor(time/duration) + 1 ) % numLayers + 1
Modify the duration and numlayers variables as necessary. Next, add the following expression to the opacity property of the layers you would like to switch between:
v = thisComp.layer(“Controller”).effect(“curr layer”)(“Slider”);
if(index == v)
100
else
0
Well, that should do it.
~Colin Braley