shortcut assignments

 From:  Michael Gibson
3808.18 In reply to 3808.17 
Hi krass,

re:
> I can't bind switching projection windows (for example) to some keyboard combination - this or
> that script is required (which are described at the very beginning of the topic).

Do you mean you want a shortcut key for the Options dialog > View > "3D view projection" setting?

Go to Options > Shortcut keys and put in this for the "Command" part:

script: var vp = moi.ui.mainWindow.viewpanel.getViewport('3D'); if ( vp.projection == 'Perspective' ) { vp.projection = 'Parallel'; } else { vp.projection = 'Perspective'; }

When the shortcut is triggered it will switch the 3D viewport between parallel or perspective projection modes.


There are some of the most commonly used scripts listed here:
https://moi3d.com/4.0/docs/moi_command_reference11.htm#shortcutkeys
like Hide, Lock, reset all views, select all, deselect all, invert selection, go to split view, maximize 3d/top/front/right view, isolate selection, select all curves, turn grid snap on/off, and some more.

Also there are more here:
https://moi3d.com/download/scripts/PetrsMoiPage/PetrsMoiPage.htm

If you want something that isn't listed just post what you want here and I can tell you the script code to do that.

- Michael

EDITED: 11 Jun by MICHAEL GIBSON