When to know each job is currently being printed?
See original GitHub issueHi, not sure if there is a way to know when to find out when each job is currently printing? So I can say something like this?
pdfDocs.forEach((pdf, index) => {
ptp
.print(pdf.path, options(pdf.tray))
.then(console.log)
.catch(console.error, "err");
setText(`Printing pack ${index + 1} of ${pdfDocs.length}`);
});
};
Issue Analytics
- State:
- Created 2 years ago
- Comments:5 (3 by maintainers)
Top Results From Across the Web
How to view details of current and completed print jobs on ...
View the job ... To see what is currently printing, click that Printer icon in your Dock. Alternatively, you can open System Preferences...
Read more >How to: Discover Whether a Print Job Can Be ...
Learn how the PrintQueue and PrintSystemJobInfo classes provide a means for checking whether a given print job can print on a given queue...
Read more >Check on a printer or print job using the Dock on Mac
To see information about print jobs, choose Jobs > Quick Look Job, Jobs > Show My Jobs, or Jobs > Show Everyone's Jobs....
Read more >How to check if a print job was sent to your printer
Once the new menu loads, pick the Printers & Scanners option from the menu on the left. Click on the printer you would...
Read more >Checking the status of a print job (qchk command)
You can use the qchk command to check the status of a print job. For local print jobs, the printer must be physically...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
oo okay, amazing, thank you 😃
hi @KirstLMCG this package is not responsible for downloading PDF, only printing it. But you can do something like this to download a PDF, print it, and then delete it.