Hello, I am attempting to write a script which opens many files, manipulates the filename, and then prints to PDF. I have the script system working. This is where I am at: from Npp import * notepad.closeAllButCurrent() notepad.open('C:\ <path> *.*') all_files = notepad.getFiles()</path> for afile in all_files: notepad.activateFile(afile[0]) notepad.menuCommand(MENUCOMMAND.FILE_PRINTNOW ) notepad.close() When this is run the files are opened and the print dialog pops up but: It requires that I click...