Viewport navigation: Rotate around selection

 From:  rich (RICHKEAR)
6124.5 In reply to 6124.4 
Good day all,

A while ago, Michael was very helpful to divide "Reset" into two separate scripts for hotkey assignments: 1. View or zoom all, and 2. view or zoom selected.

1. script:/* Zoom extents all */ var vp = moi.ui.getActiveViewport(); vp.zoom( 0.9 ); vp.reset(); vp.reset();

2. script:/* Zoom extents selected */ var vp = moi.ui.getActiveViewport(); vp.zoom( 0.9 ); vp.reset();

I find this very useful.

Rich