RTF FILE has a few shortcuts, tips and screenshots that may help
people save a lot of time if working with annotations or looking to email
'marked up' drawings.
Can't help mac users on screenshot software but nonetheless
most can work this out and just take the shortcuts and also see:
Other ways to take screenshots from viewports here:
http://moi3d.com/forum/index.php?webtag=MOI&msg=9526.173
http://moi3d.com/forum/index.php?webtag=MOI&msg=4559.2
Attached is the basic moi file used for the demo...
UPDATE: R1
As I prefer to use a universal screen capture tool...Here's the final script I am now using prior to taking the screenshot(s)...
script: /* Toggle show grid and axis and colour*/ moi.grid.showXYAxes = !moi.grid.showXYAxes; moi.grid.display = moi.grid.showXYAxes; if ( !moi.grid.showXYAxes ) { moi.command.setOption( 'prev_bkgnd_color', moi.view.viewportBackgroundColor ); moi.view.viewportBackgroundColor = 0xFFFFFF; } else { var prev_background = 0xd0d5da; try { prev_background = moi.command.getOption( 'prev_bkgnd_color' ); } catch(e){} moi.view.viewportBackgroundColor = prev_background; }
Translated:
A. Toggles off Grid and grid axis
B. Makes background white
THEN...press 2:
C. Toggles back on grid parts (A) and.... goes back to previous background colour.
"
The script stores the previous color value somewhere else rather than as just a local variable inside the script. There is a method meant for storing command options between runs of a command.
But it will only store it for this program run, it won’t persist between program sessions. So try to remember to restore it before you close down MoI. If it cannot find a saved value it
will use #d0d5da [default grey] .
"
Thank you Michael !!!
COMING SOON/NEXT:
Demo on Workflows for Presets etc.