CaptureScreenToFile – you can use this script to save a screenshot out to an image file by using a shortcut key, without needing to run any other program.
Alt+S script:var img = moi.view.screenshot( 'viewpanel', false ); var name = img.getSaveFileName(); if ( name != '' ) img.save( name );
|