Acrobat DC crashes printing to PostScript
I have a PDF with many layers that are hidden or shown based on javascripts and field values. I'm trying to print to post script and the application freezes and then crashes about 30 seconds later. I'm able to print to post script with another pdf, but this one in particular will not work. It's a pretty large file (13mb), so I thought I would try to flatten it and reduce the file size, but I still have the same problem. Below is the function I'm using to print:
function PrintThis(){
var pp = this.getPrintParams();
pp.fileName = "/filepath/something.ps";
pp.printerName = "";
pp.interactive = pp.constants.interactionLevel.silent;
pp.pageHandling = pp.constants.handling.none;
if(typeof(PrintToLoc) == "function"){
PrintToLoc(this, pp);
}
else{
app.alert("Missing system access priviledges. " + "Please contact administrator.");
}
}
Are there any types of fields, images, layers, etc. that are post script unfriendly? I'm not sure why I can print to post script with another pdf, but not this one in any form.
