Steps include:
1. Create Camera and 3D Nulls

Code: Select all
var newCamera = activeItem.layers.addCamera("Camera 1",[360.0,270.0]);
newCamera.property("position").setValue([ 360, 270, -900]);
newCamera.property("anchorPoint").setValue([ 360, 270, 0]);
for (var b = 1; b <= 5; ++b){
var curLayer = activeItem.layer(b);
var firstComp = app.project.activeItem;
var my3DNull = firstComp.layers.addNull(10);
my3DNull.threeDLayer = true;
3. Parented stack starting with the camera.
Ending up with this:

Thanks for any help.
HEAD