Re: How do I open a new window in Adobe Acrobat using the plugin sdk
Hi, The simplest possible way is to build an acrobat plugin with CLR support and use Winforms, try using the below mentioned configuration for your VC++ project.
View ArticleRe: Please clarify license terms for the PDF test suites
Thanks for the clarification, although I must admit to being a little disappointed. We would like to be able to take an archival copy in case something happens to the live site, and ideally would like...
View ArticleRe: Please clarify license terms for the PDF test suites
As long as its for internal use – be our guest! We just do not want you redistributing them on your site, with your product, etc.
View ArticleRe: Please clarify license terms for the PDF test suites
Oh and if you or anyone else needs other types of files that I haven't had a chance to put up there yet – please let me know!
View ArticleRe: Please clarify license terms for the PDF test suites
We don't have a product - I am one staff member from a number of international 'memory institutions' (national libraries, archives, etc.) that all work together to understand and document digital...
View ArticleRe: Please clarify license terms for the PDF test suites
Understood. Will work with our legal team to see what we can do.
View ArticleHow to add text to a pdf file using Access VBA??
I'm down on my hands and knees, begging. I have 300 files that I want to put a variable string at the top of the first page (centered, or at the right hand side). I am using Acrobat X and Microsoft...
View ArticleRe: How to add text to a pdf file using Access VBA??
You should look at the JSObject and how to call JavaScript methods from VB(A). Then look at the addWatermark method.
View ArticleRe: How to add text to a pdf file using Access VBA??
I've looked at that stuff until I'm blue in the face, and still don't get it.
View ArticleRe: How to add text to a pdf file using Access VBA??
I have to say 10 hours is not enough to scratch he surface of the SDK. We tend not to give examples - well I don't. Instead I help people understand the documents and write their own code.So, what is...
View ArticleRe: How to add text to a pdf file using Access VBA??
I can't figure out how to call it. Public Sub AddText() Dim pdApp As Acrobat.AcroApp Dim pdDoc As Acrobat.AcroPDDoc Dim pdPage As Acrobat.AcroPDPage Dim jso As Object Dim doc As...
View ArticleRe: Digital Signature Not Showing Up
Test Screen Name, what is the syntax for that? Any help on the code to use? Thanks, Joani
View ArticleRe: How to add text to a pdf file using Access VBA??
Jso.addWatermarkFromText( - parameters as defined in the JS docs - )
View ArticleRe: How to add text to a pdf file using Access VBA??
A while ago I wrote a blog post about how to use the JSObject from VBA:http://khkonsulting.com/2009/03/acrobat-javascript-and-vb-walk-into-a- bar/ This will not address your exact problem, but you...
View ArticleRe: How to add text to a pdf file using Access VBA??
Just did that and I'm getting an error message, "Object variable or With block variable not set." Public Sub AddText() Dim pdApp As Acrobat.AcroApp Dim pdDoc As Acrobat.AcroPDDoc Dim pdPage...
View ArticleRe: Digital Signature Not Showing Up
NO, YOU write the code. I've described what it has to do.
View ArticleRe: How do I open a new window in Adobe Acrobat using the plugin sdk
Thank you kdj_banglore,One question. I setup the project as you explain in the screen shots and I get this error when I build: error D8016: '/ZI' and '/clr' command-line options are incompatible Any...
View ArticleNeed Help Adding Parameters to addWatermarkFromText using VBA
After three days of banging my head on a wall, I got this to work: Public Sub AddText() Dim pdApp As Acrobat.AcroApp Dim pdDoc As Acrobat.AcroPDDoc Dim jso As Object Set pdDoc =...
View ArticleRe: Need Help Adding Parameters to addWatermarkFromText using VBA
Now I'm trying the JSScript method and still stuck. Not sure how to properly reference the app to use the app.constants.align.top parameter, etc. Public Sub AddText() Dim App As Acrobat.AcroApp...
View ArticleRe: Need Help Adding Parameters to addWatermarkFromText using VBA
Where did you get the impression that you can execute JavaScript in Acrobatusing this method? You really (let me repeat that REALLY) have to read theSDK documentation. There no no way around that....
View Article