Sagar.Donthineni posted this 01 March 2014
Hi Team,
We are using ScriptX Licensed version to print pdf files by passing pdf url. It's sending to the proper printer for which we mentioned but the number of copies is not getting reflected.
Even though if I pass number of copies as more than 1, only I am getting one print out.
We are using the below code. Please suggest is it a bug from your end or some I need to change from my side.
if (MeadCo.ScriptX.Init()) {
try {
with (MeadCo.ScriptX.Printing) {
if ($('#PrinterName').val() != "")
printer = $('#PrinterName').val();
if ($("#PrinterTray").val())
paperSource = $("#PrinterTray").val();
if ($("#Copies").val())
copies = $("#Copies").val();
printBackground = true;
}
MeadCo.ScriptX.Printing.PrintPDF({ url: windowurl }, false);
}