Getting PDF filename with unicode chars
Hello,I'm trying to write a plugin that gets the file path of the current active document. The code looks like this: AVDoc avDoc = AVAppGetActiveDoc();PDDoc pdDoc = AVDocGetPDDoc(avDoc);ASFile file =...
View ArticleRe: Getting PDF filename with unicode chars
Not sure what works fine. Are you typecasting ASPathName to char*? Don't do that, it's just very good luck if it sometimes works.
View ArticleHow to add simple text to document programmly?
Can't figure out. How to add simple text to document programmly? Couldn't find information about it in Interapplication Communication API Reference.
View ArticleRe: How to add simple text to document programmly?
Why did you look there? Are you trying to do this from C# or some other .NET language? On a client or server?
View ArticleRe: How to add simple text to document programmly?
Oh, yeah, forgot to mention..Trying to use vb.net on the client.
View ArticleRe: How to add simple text to document programmly?
Does it need to be true document text (which is advanced C/C++ programming for a plug-in), or could text in the form of a read-only form field work? (The difference is extremely important, and you...
View ArticleRe: How to add simple text to document programmly?
It's better to be true document text because I already found the way to make text in form by using javascript: this.addField(String(""xftPage""), ""text"", 0, [20,750,150,715]); and it is not very...
View ArticleRe: How to add simple text to document programmly?
To add document text you need to* use a plug-in (written in C/C++)* somehow cause the plug-in to be run (you can't just run a plugin from VB)* deeply understand the PDF imaging model and text internals...
View ArticleRe: How to add simple text to document programmly?
Ok, I got it. In this case the Text-form is preferable :-) Thank you!
View ArticleRe: Why are signatures created by digital signature plugins, removable?
Hi, Did you build your plug-in using the Acrobat SDK as the template? If so the SDK was created when Acrobat allowed anybody to delete a signature. Acrobat itself has since been modified because of...
View ArticleRe: How to implement text selection tool
Thanks for your response. How to do text selection tool. Please help me to do this. Shilp
View ArticleRe: How to implement text selection tool
I don't know how much we can help you. I've never heard of anyone outside Adobe doing such a thing, because the Acrobat text selection tool that is already there is good enough for many purposes. You...
View ArticleRe: How to add simple text to document programmly?
You can also use the JavaScript bridge via IAC to get to the this.addWatermark() method
View ArticleReturn text from a PDF stored in a SQL Server database (Adobe iFilter)
We are storing PDF files inside a SQL Server 2008R2 DB. We have installed the Adobe iFilter to create a full-text catalog in order to search these files. Everything was working great, until.... we...
View ArticleRe: Return text from a PDF stored in a SQL Server database (Adobe iFilter)
There is no Adobe documentation. iFilter is a standard Microsoft interface. I've never seen the documentation. It may be that you don't use it directly, but invite the system to extract text. You may...
View ArticleHow to Examine document by SDK?
Hi All, i need to examine document and remove hidden text from pdf by Acrobat C++ SDK .Can you one help me go forward.
View ArticleRe: Getting PDF filename with unicode chars
You were right, the plugin was getting a char* from ASFileSysDisplayStringFromPath. I removed that and added this which seems to have fixed my problem: ASText pathText =...
View ArticleRe: How to Examine document by SDK?
I believe that you can do this using the AVCommand APIs
View ArticleRe: How to Examine document by SDK?
I am new to Plugin development, can you provide sample code.
View ArticleRe: How to Examine document by SDK?
There is sample code in the SDK for working with the AVCommand APIs. I believe it's in the Snippets
View Article