def=Returns as a number the camera's distance from the 3D world center (0,0,0) which affects clipping, not camera placement:
Flash3DInstance.getFocalLength();
&sam=
//moves the camera clipping slowly to the center of the 3D World
function ZoomIn() {
if (myWorld.getFocalLength() %3E 0) {
myWorld.setFocalLength(myWorld.getFocalLength() - 10)
} else {
clearInterval(zI)
}
}
zI = setInterval(ZoomIn, 100);