Display clipboard in Custom HTML Prompt?

Hi - looking through the wiki I was unable to find a way to display the clipboard in a "Custom HTML Prompt".

Does anyone know how to do this? Thanks for any help!

Set the System Clipboard, say, to a variable like localClipboard and use JavaScript to display the variable:

<script>
document.write(document.kmvar.localClipboard)
</script>
1 Like