Dual Monitor Setup

 From:  Cube
5486.3 In reply to 5486.2 
You can drag the window size so that the side menus are on the second monitor and then use a whole screen for the workspace, I've been working like this and it's great. You can change the side the menus are located in the 'options' and the 'general' tab, works a treat and tbh can't really see why you need too much else as there are so few menus.

Loving this program! just wish i had more time to play with it.

PS - Can anyone post a short cut script to assign a view to a key... ive been using the below on one key but need to amend so I can assign top to the letter t, front to the letter f etc.. but tried amending but cant get to work (sorry for the thread hijack):
script: /* switching over views */ var views = [ "3d", "top", "front", "right"]; var vp = moi.ui.mainWindow.viewpanel; var current = vp.mode; for (var i = 0, len = views.length; i < len; i++) {if (current == views[i]){ vp.mode = views[(i+1)%len]; }}