I would like to inject a function that would basically open up another tab with that same pdf. With the first tab I would like it to window.print() all the odd pages. On the second tab I would like it to print all the even pages, but in reverse.
e.g.
First tab will print only these pages (odd): 1,3,5,7,9,11,13,15,17,19,21
Second tab will print the even pages in reverse: 22,20,18,16,14,12,10,8,6,4,2
Just as a heads up, this is so I can print double sided pages, on a printer that only prints one side. Where after the first pdf tab is printed, I physically spin the papers 180°, and feed the papers back in the printer, and then proceed to press print on the second tab.
Thankyou in advance!