|
To Disable Navigation of the 3D Model
To disable navigation of the 3D, set:
_root.renderWindow.allowNav = false;
Examples of where this is used:
During an animation as you do not want the user to interact with the 3D model. Thus, you can ensure that they do not affect affect the appearance of your animation. During the start of your presentation, while the interface is being drawn.
Note: Enable navigation if you would like to allow the user to interact with the 3D model again after an animation.
To Enable Navigation of the 3D Model
To enable navigation of the 3D, set:
_root.renderWindow.allowNav = true; |