var fDesc=new Array(); fDesc[0] = "Paste As File is an app to paste the contents of the clipboard to a new file in the current folder via the context menu windows explorer background. It can paste as a text file, RTF file, PDF file, or image file based on the contents of the clipboard. Supported image formats are jpg, pcx, png, bmp, tga, gif, tif and PDF. NEW in v5 you can paste FILES copied to the clipboard to ZIP or 7z archives, list the files to a TEXT file with details and copy the files to a sub folder. See help file for details.

You can paste as any plain text file just by changing the extension. If you want to paste to a HTML file, just change the extension to HTML."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }