Responsive
Carousel / Rotating layers

/* There needs to be two layers named 'startCard' & 'endCard'
This allows rotation value to dynamically change when layers are inserted or removed.
All duplicates need to be placed within these two layers
*/
//anchor point
radius = 500
value+[0,0,radius]
// Y rotation
startIndex=thisComp.layer("startCard").index;
endIndex = thisComp.layer("endCard").index;
numpt = startIndex-endIndex+1; // total number of layers
myIndex = index-startIndex;
angle = 360/numpt
myIndex*angleLinking layers' rotation with opacity

Challenge: creating user-friendly controls
Importance of converting to world space
Responsive sizing text box
Method
Attaching layers to corners of a quote box

Method 1: Arithmetic
Implementation

2-liner with conditional sizing (left-aligned text)
Shape follows typewriter
Last updated