Welcome to the IDM Forum. This forum is meant as a user-to-user support mechanism where users can share knowledge and tips for all IDM software.
Since these forums are user-to-user based, IDM does not regularly read or reply to the posts in this forum. For problem reports, suggestions, or feature requests, you must email us directly. Our trained technical support staff answers most inquiries within 30 minutes.

DaveCollins wrote:... whenever new text was copied in other applications, it would automatically be pasted at the end of the document.

UltraEdit.activeDocument.bottom();
UltraEdit.selectClipboard(0);
var sCopyOfClipboard = UltraEdit.clipboardContent;
while(true) {
if(sCopyOfClipboard != UltraEdit.clipboardContent) {
UltraEdit.activeDocument.paste();
sCopyOfClipboard = UltraEdit.clipboardContent;
}
}

