-
1. Re: Printing all artboards?
ThomasBB83 May 30, 2013 2:51 AM (in response to ThomasBB83)I tried this as well:
options.artboardRange = "1-"+sourceDoc.artboards.length;
sourceDoc.print(options);
but to no avail - it still only prints the first page/artboard.
-
2. Re: Printing all artboards?
Muppet Mark May 30, 2013 4:05 AM (in response to ThomasBB83)Print options holds about a half dozen other sub-options you will need to construct several of these to pass… The easier option is to save a print preset and use that…
-
3. Re: Printing all artboards?
ThomasBB83 May 30, 2013 4:43 AM (in response to Muppet Mark)Managed to get it working - I needed to do this as well:
var colorOptions = new PrintColorManagementOptions();
var printOptions = new PrintJobOptions();
var options = new PrintOptions();
options.jobOptions = printOptions;
I had already declared PrintColorManagementOptions and PrintOptions, but I'd forgotten about PrintJobOptions. After setting these, everything worked beautifully.
So thanks for putting me on the right track

