MoI - Big Wishlist thread - Post your wishes here

 From:  Michael Gibson
275.63 In reply to 275.59 
Hi Richard,

> One request that would be nice would be if you could toggle the active
> view to full screen with the spacebar.

This is possible in the current version by defining a custom keyboard shortcut.

To do this, close down MoI, then run notepad and open up the moi.ini file, which you can find in this location: C:\Documents and Settings\[your login name]\Application Data\Moi\moi.ini . Note that by default "Application Data" is a hidden folder, but you can just type it and go into it anyway.

Inside the moi.ini file, there is a section labeled [Shortcut Keys]. Add this line to it:

[Shortcut Keys]
Space=script:if ( moi.ui.mainWindow.viewpanel.mode != 'split' ) { moi.ui.mainWindow.viewpanel.mode = 'split' } else { var viewport = moi.ui.getViewportUnderMouse(); if ( viewport ) { viewport.viewPanel.mode = viewport.name } }

Put all that Space= stuff all on one single line.

Make sure to close down moi.exe before editing the moi.ini file.

After you do this, your space bar will put the view under your mouse into full screen mode, or if you are already in full screen mode it will switch to split mode.

Let me know if you have any problems setting this up.

- Michael