Save image from MOI

 From:  Michael Gibson
1049.40 In reply to 1049.39 
Hi Franz, it is likely to be a problem or limit of maximum texture size in your new machine's video driver.

You could try updating your machine's video driver or lowering the width and height of the requested image down from 5300, 3560 .

What happens if you use this for example:

script: /*! Screenshot Moi Strg+G*/var v = moi.ui.getActiveViewport(); if ( v != null ) { moi.view.lineWidth = 4; v.renderToClipboard( 1000, 1000 ); moi.view.lineWidth = 1; }

- Michael