adobe-reader

PDF JavaScript does not work in Adobe Reader DC but all other Readers

删除回忆录丶 提交于 2019-12-30 22:26:04
问题 I am unable to get my pdf to work online with Adobe Reader DC. http://www.okeechobeecountytaxcollector.com/Documents/FeeCalculatorRev0909.pdf None of the buttons or functionality is working. (Like when you click motorvehicles, or Mobile homes or any of those buttons across the top a drop down of choices is supposed to appear) But if I open in any other reader it works fine. Does anyone know how I may be able to edit the document to work properly in Adobe Reader DC as well? Is there any

I need to open a local PDF using Adobe Reader app via an IBaction using a Button

喜夏-厌秋 提交于 2019-12-25 12:26:14
问题 I have been searching for days for a solution to my problem and cant find exactly what I need. I have created an interactive PDF that needs to be viewed in Adobe Reader (the app is on the ipad). I have multiple view controllers I need to add a universal button to that will open Adobe Reader to show the pdf (via popover to the app or embedded, embedded preferred). Currently when i click my button, the screen just slightly dims, then goes back to normal after a second touch. Based on what im

Access VBA - Export Access Form to PDF then Close the Adobe Reader

Deadly 提交于 2019-12-24 03:07:40
问题 I have a VBA code in Access that exports/saves 3 seperate Access Forms to a PDF for record purposes. However, upon completion, Adobe Reader opens the Forms that were saved, requiring the processor to manually close all 3 forms. 3 forms doesn't sound like much but they will be completing this process continuously for all 239 of our entities! This means they will have to manually click Close over 700 times a day! So much for efficiency. Is there a VBA code to close the PDF in Adobe Reader?

How to name a 'group' check box in Adobe Reader when wanting to fill form by FDF / XFDF

前提是你 提交于 2019-12-24 01:18:14
问题 I've managed to populate ordinary pdf text fields via an fdf file and via an xfdf file. My problem is that I need to check some checkboxes. I have read this article entitled 'FDF - how to check a checkbox?' but I still can't get mine to work. One of the things I'm confused with is how I should be naming the checkboxes on the pdf form. If I have a group of radio buttons called 'gender' how do I name them on the pdf form. Is there the same idea of a radio group for the checkboxes on an Adobe

write in unicode text on visible signature - pdfbox

梦想与她 提交于 2019-12-23 01:37:29
问题 I'we build PDF, using PDFBox. I've visible signature too. I write some text like that: ... builderSting.append("Tm\n"); builderSting.append(" /F1 " + fontSize + "\n"); builderSting.append("Tf\n"); builderSting.append("(hello world)"); builderSting.append("Tj\n"); builderSting.append("ET"); ... PDStream stream= ...; stream.createOutputStream().write(builder.toString().getBytes("ISO-8859-1")); everything works well. but if I write some unicode characters in builderString, there is "???"s

Process.Start(/* path to pdf */) doesn't work with Adobe Reader on Windows 8

三世轮回 提交于 2019-12-22 03:22:26
问题 I'm able to create PDFs in my C#/WPF application and run them with the following: Process.Start(_pathToPDFFile); This works with Adobe Acrobat, but not with Adobe Reader. When Adobe Reader is installed, Process.Start() does nothing unless the Reader process is already running in the Task Manager. How can I get Adobe Reader to show the PDF when I attempt to start a PDF? 回答1: In our case, the problem was only reproducible when starting the application from Visual Studio - starting the .exe

C# Prevent Adobe Reader Window from coming up when trying to print a document

时光怂恿深爱的人放手 提交于 2019-12-19 03:26:07
问题 For reasons I can't get into right now, I need to prevent the Adobe Reader window from opening up when I try to print a document. The developer that was working on this before me has the following flags set, although I'm not really sure what they're for - if (RegistryManager.GetAcrobatVersion() >= 9.0f) printerArg = "\"" + printerName + "\""; else printerArg = printerName; Process myProc = new Process(); myProc.StartInfo.FileName = fileName; myProc.StartInfo.Verb = "printto"; myProc.StartInfo

javascript detect adobe reader plugin for browser

会有一股神秘感。 提交于 2019-12-18 01:06:13
问题 If the pdf viewer plugin is not installed how to detect it and give a alert message to install pdf viewer 回答1: I created a script on my blog for all major browsers to detect pdf reading capabilities. Even distinguishes between Chrome's PDF Viewer and Acrobat. you can get the code here: Detecting Adobe Acrobat in all browsers 来源: https://stackoverflow.com/questions/4122061/javascript-detect-adobe-reader-plugin-for-browser

How can I hide the Adobe Reader toolbar when displaying a PDF in the .NET WebBrowser control?

末鹿安然 提交于 2019-12-17 23:25:30
问题 I am trying to load a PDF document inside a .NET web browser control. In versions of Adobe Reader prior to v10 (aka "X"), the PDF loaded without the toolbar displayed—you would just see the PDF document. In the newly-released Reader v10, there is a toolbar that I do not wish to see. I am wondering if anyone knows how to hide this toolbar. I'm thinking that the answer may lie in the Registry, as there is no direct code that I am using to access Reader. Everything is handled by mime types

iTextSharp-generated PDFs now cause Save dialog in Adobe Reader X

≯℡__Kan透↙ 提交于 2019-12-17 04:07:34
问题 I have been using iTextSharp to generate PDF documents for over a year. Unfortunately, with the release of Adobe Reader X, my PDFs now cause a "Do you want to Save?" dialog to appear when closing the PDF document. This does not happen with PDFs that are not generated with iTextSharp. It's really annoying for my users who are opening and closing PDF documents all day long. Are there any properties in iTextSharp that I can set to prevent this from happening? If it helps, I am using a PdfReader