Dimensions and printing

 From:  Michael Gibson
3232.4 In reply to 3232.3 
Hi eric, yeah it would have been nice to have it in v2, but there are only so many hours in the day...

re: screen capture - instead of using SnagIt, you might be interested in setting up the following script on a keyboard shortcut in MoI:

script:var v = moi.ui.getActiveViewport(); if ( v != null ) { moi.view.lineWidth = 4; v.renderToClipboard( 2560, 2560 ); moi.view.lineWidth = 1; }

Go to Options > Shortcut keys, and set up a new shortcut key and paste in the above as the Command part for it.

Then when you press that key it will generate a higher resolution viewport image and copy it to the clipboard. If you then reduce that in size in an image editing program it can make for a nice effect.

- Michael