Quantcast
Channel: Adobe Community: Message List - Acrobat SDK

Re: Does AcrobatSDK have function that adding headers and footers?

Look at using AVCommands

View Article


Image may be NSFW.
Clik here to view.

Re: How to Use ActiveX Control in Acrobat Plugin?

It probably isn’t impossible, but juggling two event driven APIs may be an interesting challenge. Be aware of thread limitations in plugins:1. If you block the main thread you block all of Acrobat (so...

View Article


Is there a way to create a dialog box to choose a file instead of a folder?

Trying to select a file and get the ASPathName of the file. There was a sample in PDF Binder to do so but it only allow you to choose folder instead of a file with AVAppChooseFolderDialog method.

View Article

Image may be NSFW.
Clik here to view.

Re: Is there a way to create a dialog box to choose a file instead of a folder?

You can use AVAppOpenDialog

View Article

Programming interface for Adobe Reader

Can we configure a certificate to adobe reader for signing purpose programatically ? (perhaps using Windows batch file, shell-script or official library available from adobe)The certificate needs to be...

View Article


Re: Programming interface for Adobe Reader

The Acrobat SDK describes all programming interfaces in Acrobat, and a few in Reader too. Neither one has an interface for this, so far as I know.

View Article

Image may be NSFW.
Clik here to view.

Re: Programming interface for Adobe Reader

What about just adding it to the Windows Certificate Store, where Reader can find it?

View Article

Image may be NSFW.
Clik here to view.

Re: Programming interface for Adobe Reader

The reader is able to find it i.e. the certificate is already installed in cert-store (windows) or keychain (macOS). In order to configure the reder, below are the manual steps that we follow: 1. Go to...

View Article


Image may be NSFW.
Clik here to view.

Re: Programming interface for Adobe Reader

There is a tool for admins for doing this – see https://www.adobe.com/devnet-docs/acrobatetk/

View Article


Image may be NSFW.
Clik here to view.

Adding a signature causes a 'Link Annotation Modified'

Hello, If I have a document which pages are indexed and I add 2 DidSig signature on an indexed page, I get a 'Annotation Modified' on the Signature panel (left side):The signature was newly added, no...

View Article

Image may be NSFW.
Clik here to view.

Re: Adding a signature causes a 'Link Annotation Modified'

Can you post the PDF in question so we can examine it?

View Article

Image may be NSFW.
Clik here to view.

Re: Adding a signature causes a 'Link Annotation Modified'

Sure, here is a simple document showing this behavior: Word document with table of content, converted to PDF with Acrobat Pro DC on Windows 10, then signed with 'iSign Solutions' Sign-it plug-in...

View Article

Is it possible to save a pdf with Acrobat Pro from commandLine?

I´m trying to write a script, that search for a PDF File and saved in another File.

View Article


Image may be NSFW.
Clik here to view.

Re: Is it possible to save a pdf with Acrobat Pro from commandLine?

What you mean with "saved in another file" ?

View Article

Re: Adding a signature causes a 'Link Annotation Modified'

Since the first signature is an approval signature and not a certifying signature, we warn viewers that the document has been modified and why.   This is a GOOD THING… If you don’t want this, then use...

View Article


How to handle double click on annotation

Hi! If we want to handle simple click , we can do Handle mouse clicks in the annotation by using the AVAnnotHandlerDoClickProc callback method.But if we want to handle double-click , what callback...

View Article

Image may be NSFW.
Clik here to view.

Re: How to download SDK documentation?

Hi All, I am sorry for the delayed response, on the DC SDK hub page, all the SDK links of Acrobat are working fine now, please check and let us know if you experience any issue.The Acrobat SDK...

View Article


Image may be NSFW.
Clik here to view.

Re: Add bookmarks to pdf file using Excel VBA

Hello ReinhardF, A few years later, but still people are searching for ways to make bookmarks in e tree like fasion using VBA.Unfortunally the file you mentioned,...

View Article

Re: Adding a signature causes a 'Link Annotation Modified'

Thanks for looking into it. Makes sense, just wanted to know if this is the expected behavior.Actual if I pre-populate the document with all signatures before signing, no modification is showen after...

View Article

Image may be NSFW.
Clik here to view.

Fill and Sign and .net

I am writing a .NET program to allow a user to open a partially prepopulated form and finish filling out the paperwork while in the field and then have the program save the pdf and update a database to...

View Article

API to export/convert pdf to excel

I have hundreds of pdf's which need to be converted to excel.  I wanted to know whether there is an API to automate this conversion of pdf to excel.I can't manually export the pdf's to excel.

View Article


Image may be NSFW.
Clik here to view.

Re: Acrobat Distiller 2017 - PDF to Word conversion produces unreadable text

Hi, completely off topic but is there an api to convert pdf to excel. I have hundreds of pdf's which need to be converted to excel and I can't do it manually. I have asked the question but no answer...

View Article


Re: Acrobat Distiller 2017 - PDF to Word conversion produces unreadable text

You can use the Action Wizard of Adobe Acrobat Pro.

View Article

Image may be NSFW.
Clik here to view.

Re: API to export/convert pdf to excel

Yes, Adobe Acrobat includes such an API.  Or you can use the Actions feature of Acrobat to batch convert.

View Article

How to check if acrobat is installed in .NET

I have a program I am writing that has parts that interact with acrobat.  When a user that does not have acrobat is running the program on their machine it crashes when they try to access a form that...

View Article


Image may be NSFW.
Clik here to view.

Re: How to check if acrobat is installed in .NET

It should be possible to detect and recover from failures in .NET, in the way try ... catch is used in JavaScript. Don't know the details.

View Article

Image may be NSFW.
Clik here to view.

Re: How to check if acrobat is installed in .NET

Hi,  Pretty sure they have a try...catch almost exactly the same as JavaScript.  Regards Malcolm

View Article

Excel VBA - unable to attach XLS file to PDF

I have the folowing VBA code that successfully creates two signature fields in PDF and then stops with Object Required error at Set oAttachment = oJS.ImportDataObject(Selected_File). Any ideas how to...

View Article

Re: Excel VBA - unable to attach XLS file to PDF

You have to specify a name for the data object as the first parameter.

View Article



Re: Excel VBA - unable to attach XLS file to PDF

I am trying Set oAttachment = oJS.ImportDataObject("Attachment", Selected_File), still generates Object Required error.

View Article

Image may be NSFW.
Clik here to view.

Re: Excel VBA - unable to attach XLS file to PDF

In my experience, you may have to provide all optional parameters for some func in the JSO to work. 

View Article

Re: Excel VBA - unable to attach XLS file to PDF

Tracing the code I figured out that Selected_File was a string, not an object and now fixed it. Now I am getting Type mismatch error. Hope this is getting me closer to the answer...  Karl, in the...

View Article

Image may be NSFW.
Clik here to view.

Re: Excel VBA - unable to attach XLS file to PDF

In the API reference you will also find the list of parameters. There are three. I am writing this on my phone, so it’s not as straight forward to attach a screenshot. The third parameter is...

View Article


Image may be NSFW.
Clik here to view.

Options for controlling the PDF virtual printer programmatically?

My application currently communicates to the PDF virtual printer the target folder using the Windows Registry. Specifically the following location is used:...

View Article

Image may be NSFW.
Clik here to view.

Re: Options for controlling the PDF virtual printer programmatically?

This method still works, but there are problems in the 32-bit/64-bit bridging that happens automatically in 64-bit Windows. If your app is 32-bit, then it isn't your app that talks to the print driver....

View Article

How to create Pdf from image

Hello to everyone! I Have the following problem, I need to create Pdf from image ( doesn't matter jpg, or jpeg) with the help of Adobe Acrobat SDK ( C++), I know that Adobe Acrobat can create pdf from...

View Article


Image may be NSFW.
Clik here to view.

Re: Convert img to pdf in c++

Maybe you remember which sample is including this example ?

View Article


Re: How to create Pdf from image

You can do this using the AVConversion APIs in Acrobat – there is a sample in the SDK that shows how do this.

View Article

Re: How to create Pdf from image

I suppose its SnipperRunner?

View Article

Re: How to create Pdf from image

There is one in there too, but I believe it’s called Binder

View Article

Re: How to create Pdf from image

You can always do a multi-file search ythrough the SDK for “AVConversion”. Also, be sure to read the documentation and not just use the code SAMPLE…

View Article


Re: Convert img to pdf in c++

Shouldn't be too hard to search for which source codes contain AVConversion. Exclude headers. This should narrow the choice considerably.

View Article

Image may be NSFW.
Clik here to view.

Re: How to create Pdf from image

Thank you a lot !

View Article


How to create Submenu in Acrobat SDK

Hello Team, I need to create a submenu in Acrobat SDK. Please help me to achieve this. bellow is the menu format.menu-----Test                Test1                Test2--Test3...

View Article

Re: How to add sub-menu items in acrobat?

Hello poorthip87, Can you please share your code for creating submenu using Acrobat SDK? It will help to implement same thing in my project. ThanksVijaykumar L S

View Article


Image may be NSFW.
Clik here to view.

Re: How to add sub-menu items in acrobat?

Please read the AVMenu and AVMenuItem APIs. It is all there.

View Article

Re: How to add sub-menu items in acrobat?

Hello test screen, i can able to create submenu inside menu.but i cant create menu inside menu. my requirement is to create submenu lke bellow. TestTest1--Test1.1           Test1.2--Test1.1.1...

View Article

Image may be NSFW.
Clik here to view.

Re: How to add sub-menu items in acrobat?

Read the parameters for AVMenuItemNew.

View Article

Re: How to create Submenu in Acrobat SDK

Hello Team, I can able to create submenu like View(Menu in Acrobat)  |Rotate View(Submenu in Acrobat)bellow code i am using for creating submenuAVMenubar menubar = AVAppGetMenubar ();AVMenu CommandMenu...

View Article


Image may be NSFW.
Clik here to view.

Re: How to create Submenu in Acrobat SDK

Duplicate post. I already told you what to do.

View Article



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>