vote up 1 vote down star
1

Hi folks,

I have a web page with embedded PDF on it. My code looks like this:

<embed
    type="application/pdf"
    src="path_to_pdf_document.pdf"
    id="pdfDocument"
    width="100%"
    height="100%">
</embed>

I have this javascript code for print my PDF:

function printDocument(documentId) {

    //Wait until PDF is ready to print    
    if (typeof document.getElementById(documentId).print == 'undefined') {

    	setTimeout(function(){printDocument(documentId);}, 1000);

    } else {

    	var x = document.getElementById(documentId);
    	x.print();
    }
}

When this code is executed Acrobat plug-in opens the well-known print dialog. Something like this:

alt text

Two questions:

  • How to improve the way to detect that PDF is loaded and ready for print?
  • How to avoid showing print dialog?

A little more info about my system:

OS: Windows XP

Browser: Internet Explorer 7

PDF Plugin: Acrobat Reader 9

Thanks in advance, all ideas will be apreciated ;-)

flag

2 Answers

vote up 2 vote down check

You are not going to be able to print silently with plain old JavaScript. How would you like your printer to start printing out 100000000 pages of all black. Not a good thing. If you want to print silently and have it work for Internet Explorer only, there are ActiveX controls out there that can do it. This requires higher security settings for your page and for your users to really trust your site.

link|flag
Thanks, its for corporate intranet not for the Internet, they must trust! :-) Can you point me to this ActiveX. I will evaluate it. – SourceRebels Jun 10 at 14:30
vote up 1 vote down

I wonder if you actually need to wait before printing -- won't the print job handle that for you? And I truly hope no modern browser will allow you (or any website for that matter) to print without that confirmation dialog (some old browsers used to do that, a long time ago).

link|flag
Hi Arjan, Thanks for your quick reply. If I call .print method before PDF file is loaded i get a Javascript error something like 'this method is not allowed for this object' (I get the error message in spanish). On your second apreciation I think that PDF is not printed by browser is printed by Acrobat plug-in :-) – SourceRebels Jun 10 at 13:50
But that plugin could be present in anybody's browser, right? If so, then I don't expect that confirmation to disappear. Does the onload event for the body element fire before your PDF is loaded? – Arjan van Bentem Jun 10 at 13:57
Oh, it seems to me that Internet Explorer supports onload() for embed as well: msdn.microsoft.com/en-us/library/… – Arjan van Bentem Jun 10 at 14:00
@Arjan: Its a corporate Intranet application, all clients have Acrobat reader version 9 installed and Internet Explorer 7 :-), yes, the onload is fired before PDF is loaded and onload event of embed its having same behaviour. – SourceRebels Jun 10 at 14:29
Hmmm, that's odd, the onload firing too early. Let's assume you'll have more luck finding that ActiveX control then... – Arjan van Bentem Jun 10 at 14:41
show 1 more comment

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.