V4 beta Oct-10-2019 available now

 From:  Michael Gibson
9526.173 In reply to 9526.172 
Hi Terry, if you set up the following on a shortcut key it will switch the background to white, generate a viewport image with the white background and put it on the system clipboard and then reset the background back to its previous value:

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

Hopefully that will help, let me know if it isn't quite right.

- Michael