3d View - view pivot point

 From:  Michael Gibson
9165.4 In reply to 9165.3 
You're welcome Fred! Also you can paste in the following script for the "command" part of a shortcut key, this one will do one point pick and set that as the 3D view's rotation pivot point:

script: /* Set 3D view rotation pivot */ var p = moi.ui.createPointPicker(); if ( p.waitForEvent() && p.event == 'finished' ) { moi.ui.mainWindow.viewpanel.getViewport('3D').targetpt = p.pt }

- Michael