I've made a task, so it prints 3 files in a certain specific order.
The files are 2 PDF's and 1 DOCX file.
Side-note: I've limited what to print, based on last modification date (between now and 5 minutes before, not that it should matter?).
The sequence is print PDF1 1st, then WORDDOC, then PDF2.
However, when I look up the print tasks, the WORDDOC always comes first.
As if, the sequence/order is ignored?
How can I force it to print in the order described above?
I've tried adding each print task indivually within the Robotask task set in proper order = failed.
I've tried adding 3 print tasks within 1 task, so 1 print task per line in the proper order = failed.
Robotask in attachment.
Print order ignored?
Print order ignored?
- Attachments
-
07 d - Alles afsluiten & uitprinten.zip
- (1.3 KiB) Downloaded 48 times
Re: Print order ignored?
The problem is that RoboTask does not print documents directly. It uses system shell mechanism.
That is:
I recommend to do pauses between printing one document
That is:
- RoboTask sends a command to the command shell to "print document".
- The shell launches the appropriate application: PDF Viewer, MS Word, etc.
- The program opens the document and sends it to the printer
I recommend to do pauses between printing one document
Code: Select all
Print {PDF1}
Pause 10 sec
Print {WordDoc}
Pause 10 sec
Print {PDF2}
Oleg Yershov
Re: Print order ignored?
I've added 500ms in between the print jobs:
Works, thank you Oleg!
Works, thank you Oleg!
