Questions tagged [acrobat-sdk]

The Software Developer Kit for Adobe Acrobat

With the Acrobat SDK you can write scripts in to extend the functionality of , create plug-ins, and use the interapplication communication (IAC) to have an independent program control Acrobat's functionality.

For more information, go to http://www.adobe.com/devnet/acrobat/overview.html.

133 questions
0
votes
1 answer

How to implement ctrl click behavior to copy text from an embedded pdf in a webapp?

I have a requirement for a webapp to implement the following behavior: After a webform is opened with an embedded PDF object is shown in the browser the user needs to be able to select a text in the document with a ctrl + mouse click after which the…
Martijn Burger
  • 7,315
  • 8
  • 54
  • 94
0
votes
1 answer

How to use Acrobat plugin from C++ application with InterAppCommunication

My app needs to open a pdf in Acrobat and apply a plugin. I searched the internet for solutions but I didn't find at least one example. What I did: I managed to develop the plugin, integrate it in Acrobat and open pdfs in Acrobat. Now I just need to…
Cretzu
  • 61
  • 9
0
votes
1 answer

Convert button objects to link objects in acrobat

I have a 40 page PDF. On each page is a Previous and Next button object. I run the PDF through a tool that converts it to a SWF. The problem is the tool I run it through doesn't know what to do with Button Objects. They are visible, just inactive.…
Ronnie
  • 11,138
  • 21
  • 78
  • 140
0
votes
2 answers

Injecting JavaScript to PDF from MVC 3 controller

In my ASP.NET MVC3(Razor) application am struggling with the print utility. I want to auto print a PDF file which is converted from rdlc. I converted the rdlc to pdf using the following code: LocalReport localReport = new LocalReport(); …
Nithesh Narayanan
  • 11,481
  • 34
  • 98
  • 138
0
votes
1 answer

Reporting Progress from COM/STA Thread to WPF UI thread

I working on an application that prints PDFs using COM and the Acrobat SDK. The app is written in C#, WPF and I am trying to figure out how to run the printing correctly on a separate thread. I have seen that a BackgroundWorker uses the thread…
jle
  • 9,316
  • 5
  • 48
  • 67
0
votes
1 answer

Extract screenshot or picture of portion of PDF using VBA or VB and Adobe SDK

I am currently using an excel macro (although I will switch to VB.NET if necessary) to loop through all of the text in a PDF and populate an array with certain portions of the text in the PDF (via the Adobe SDK and getPageNthWord). This part is…
Ben Strombeck
  • 1,509
  • 1
  • 17
  • 22
0
votes
2 answers

Need to print a PDF from .net and select different trays for output

My company is moving to a new system which has a very poor printing system in place but it does create PDF's on the file system. My Boss has asked me to create an application to print all the PDF's based on a JOB number. I've gotten the filesystem…
JoshF
  • 159
  • 4
  • 15
-1
votes
1 answer

Set PDF Initial View Window Options to Show Document Title (instead of File Name) Programmatically

I have scripted Acrobat Pro DC via VBA to overlay Annotations (Comments) from files having the same name. However, I need to display the count of the number of input files in the Window Title. I've figured out how to set the Document Title…
Travis Bennett
  • 131
  • 3
  • 12
-1
votes
2 answers

Reading PDF file using Acrobat SDK with C#.net

How to read the pdf file using Acrobat SDK? I don't want any third party tool/dll like iText etc. I need to read via Acrobat SDK. I just gone thr the adobe site, documents bit complex and dig little.. Any one expert in Adobe SDK help me. Thanks
Sam
  • 37
  • 1
  • 2
  • 8
-2
votes
1 answer

C# : Replace while loop with ForEach (Acrobat SDK)

Can this be replaced with ForEach or IEnumrable IAFormApp formApp = new AFormAppClass(); IFields myFields = (IFields)formApp.Fields; IEnumerator myEnumerator = myFields.GetEnumerator(); while (myEnumerator.MoveNext()) { IField myField =…
Sid133
  • 354
  • 2
  • 17
-2
votes
1 answer

How can one embed or call some Python code in an Acrobat JavaScript script?

I am writing an Acrobat Javascript script. How can one embed or call some Python code in an Acrobat JavaScript script?
Franck Dernoncourt
  • 77,520
  • 72
  • 342
  • 501
-3
votes
1 answer

Convert PDF to Images

Can some one tell using a small sample code on how to convert a multipage PDF file to multiple images with the option to convert to Colored Image (.png) or Grayscale Image (.tif) using Adobe Acrobat XI SDK in C#?
amyn
  • 922
  • 11
  • 24
1 2 3
8
9