Hey Dan
Your workaround is great, thanks!
It seems though, that the below script will only run on the topmost selected layer, not all of them, is there a tweak we could make so as to ensure the script applies to all selected layers?
{
var myLayer = app.project.activeItem.selectedLayers[0];
var temp = myLayer.property("orientation").value;
myLayer.property("xRotation").setValue(temp[0]);
myLayer.property("yRotation").setValue(temp[1]);
myLayer.property("zRotation").setValue(temp[2]);
myLayer.property("orientation").setValue([0,0,0]);
}
Thanks heaps,
Nathan
On Point Cloud Nine