I'm trying to write a script that closes all files with the Edit* prefix that I'm using for junk and need to clear once and a while. I don't want to get save prompts when I run the script.
Any ideas?
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.

// Close all new files without prompt.
var nFileIndex = UltraEdit.document.length;
while (nFileIndex--) {
if (UltraEdit.document[nFileIndex].isName("")) {
UltraEdit.closeFile(UltraEdit.document[nFileIndex].path,2);
}
}