Hi Sasha,
maybe you can try this out:
1. I would position all your layers in a way you want them aligned
2. then i would add a null object layer ( in my example layer(“Null 1”).effect(“RandomFactor”) )with an expression effect > slider
3. on every layer i would paste the following code in the position value :
seedRandom(index,true);
rX = random(-200,200)/100 ;
rY = random(-200,200)/100 ;
[position[0]+thisComp.layer(“Null 1”).effect(“RandomFactor”)(“Slider”)*rX,position[1]+thisComp.layer(“Null 1”).effect(“RandomFactor”)(“Slider”)*rY]
which basically means : take your current position and add/subtract a percentage of a random value..
the percentage is controlled by the slider in the null object…
in the code above the random value range goes from -200 till +200 but you can change that if you want…
hope it helps,
Wim