Hi David, thanks for posting the scripts! So the problem is that particular screenshot script is specifically setting the shading mode to plain shaded. If that part is removed then it should function like you want. The parts that need to be removed are the pieces that say: moi.view.shadeMode = 'Shaded';
So you would want to have your screenshot script be like this instead:
script: /* Generate hi res screenshot to clipboard */ var v = moi.ui.getActiveViewport(); if ( v != null ) { moi.view.lineWidth = 0.5; v.renderToClipboard(3000,2000 ); moi.view.lineWidth = 0.5; }
If you use this version instead, I think it should behave how you want, please let me know if it still does not.
- Michael
|