quick swich btwn Rotation styles

 From:  Michael Gibson
8700.2 In reply to 8700.1 
Hi Ivan, for toggling it try putting this on a shortcut key:

script: /* Toggle between Free Rotation / World Z Axis Rotation */ moi.view.rotationStyle = (moi.view.rotationStyle == 'World' ? 'Free' : 'World');


To bring up the dialog do this one:

script: /* Show Rotate/Pan/Zoom Options dialog */ moi.ui.createDialog( 'RotatePanZoomOptions.htm' );


Hope that helps! - Michael