Open PDF in popup window

  • Thread starter Thread starter Leo
  • Start date Start date
L

Leo

I need to open a PDF file in a popup window that has no user interface. I
can do that with:
function popUpPDF(fileName)
{
var pdfWindow = window.open(fileName,"SalesReport", scrollbars=0,
toolbar=0, menubar=0,directories=0);
}

I would also like to suppress the toolbars and tabs in the Acrobat Reader
plug-in. Does anyone know how to do this?
 
not supported by the browser. you would to make your own active/x control
that hosted the pdf viewer.

-- bruce (sqlwork.com)
 
Back
Top