DO12.7b1 Secure Screenshot in Help Menu

The default Help menu has a new Secure Screenshot command in it which lets you take a secure screenshot of the current Lister or the whole desktop (with all Listers blurred).

Cannot find it in my help

image

You'll need to reset your toolbar to the defaults to pick up the new defaults. You can do that by right-clicking on an empty part of it.

Hi Leo

After doing Factory reset on this toolbar there is now no Help

My fault had moved Help to Menu Bar from default position on Toolbar.
Have now rest All tool bars copied Help button restored configuration and put new Help on Menu bar now have Secure Screenshot

Thanks for the Help

onedot3

Should the Secure Screenshot command appear in the list of commands for customising the toolbar, or does it also require a factory reset for the command to be available?

The list of pre-made buttons doesn't contain everything (that'd be a lot of commands!). Some commands need to either be made via the button editor or copied from the stock toolbars (whichever is easiest).

The secure screenshot menu items run these commands in the stock toolbars:

Lister:
Clipboard SCREENSHOT=secure

Whole screen:
Clipboard SCREENSHOT=secure,all

Or you can paste this on to your menu:

<?xml version="1.0"?>
<button backcol="none" display="both" label_pos="right" separate="yes" textcol="none" type="menu">
	<label>&amp;Secure Screenshot</label>
	<icon1>#screenshot</icon1>
	<button backcol="none" display="label" label_pos="right" textcol="none">
		<label>&amp;This Lister</label>
		<tip>Copy a secure screenshot of this Lister to the clipboard.</tip>
		<function type="normal">
			<instruction>Clipboard SCREENSHOT=secure</instruction>
		</function>
	</button>
	<button backcol="none" display="label" label_pos="right" textcol="none">
		<label>&amp;Whole Screen</label>
		<tip>Copy a secure screenshot of the whole screen to the clipboard.</tip>
		<function type="normal">
			<instruction>Clipboard SCREENSHOT=secure,all</instruction>
		</function>
	</button>
</button>

Got it. It's working. Brilliant, thanks.