1) after complete event....
scene.forEach( setTwoSided, Mesh3D );
function setTwoSided( mesh:Mesh3D ):void
{
for each ( var surf:Surface3D in mesh.surfaces ) surf.material.twoSided = true;
}
2) it will be similar to 1), you just need to pass that model into the setTwoSided function as a parameter.