Я предполагаю, что если вам нужно, чтобы ваши коллеги могли выбирать любые два PDF-файла, которые они захотят, то это нужно будет запрограммировать в интерфейсе, и в настоящее время такая возможность недоступна.
Но прежде чем идти по этому пути, действительно ли вам это нужно? Или вы имеете в виду ограниченное количество комбинаций PDF-файлов? Если да, почему бы не объединить их вне PTXprint, а затем просто импортировать объединенный файл. Я бы сделал это с помощью pdftk file1.pdf file2.pdf cat output newfile.pdf, но я уверен, что в Windows есть и простые способы сделать это.
Альтернативно, вероятно, это можно сделать с помощью какого-либо sethook. Недостатком этого является то, что расположение PDF-файлов нужно будет вставить в код в виде текстовой строки (не удобный графический интерфейс). Могли бы вы настроить это, или это в пределах возможностей ваших коллег?
I’m guessing that if you need your teammates to be able to select any two pdfs they want, then that will need to be programmed into the UI and isn’t currently available.
But before going that route, is that what you need? Or are you talking a limited number of combinations of pdfs here? If so, why not combine them outside of PTXprint and then just import the combined file. I’d do this using pdftk file1.pdf file2.pdf cat output newfile.pdf, but I’m sure there are easy ways to do it in Windows too.
Alternately, it’s probable that this could be done with some sort of sethook. The disadvantage of that is that the location of the pdfs would need to be inserted into the code as a text string (not a nice GUI interface). Is that something you could set up, or within the ability of your teammates?