Print specific pages and quantities
How would I print (ID6) specific pages and quantities using a script -- for example, using all current parameters, to print 1 copy of page 1 and 2 copies of page 2?
The following on its own (even if not elegant) works to do what I wish:
app.activeDocument.printPreferences.pageRange = "1"
app.activeDocument.print (false) ;
app.activeDocument.printPreferences.pageRange = "2"
app.activeDocument.print (false) ;
app.activeDocument.printPreferences.pageRange = "2"
app.activeDocument.print (false) ;
But as opposed to printing page 2 twice with one command line for each of the two copies (takes longer), how do I do it with one command line by specifying two copies?
Thanks for your help.