Save larger image to clipboard with print screen

 From:  moujiik
5686.5 In reply to 5686.4 
Hi

I am using this script:

script: /* Custom screenshot */ var prev_background = moi.view.viewportBackgroundColor; moi.view.viewportBackgroundColor = 0xFFFFFF; moi.view.lineWidth = 1; moi.grid.display = false; moi.grid.showXYAxes = false; moi.view.showAxisIcon = false; moi.view.meshAngle = 3; moi.ui.getActiveViewport().renderToClipboard( 4000, 2500 ); moi.view.lineWidth = 1; moi.grid.display = true; moi.grid.showXYAxes = true; moi.view.showAxisIcon = true; moi.view.meshAngle = 8; moi.view.viewportBackgroundColor = prev_background;

But, it only take a screenshot of one view. Is it possible to take a screenshot of the four views all together? With the same settings, and, if possible, (i'm asking a lot!) with an automatic "zoom all" of each view.

Thank you

Moujiik