Re: Modeless window
The thermometer object is highly unreliable. Many times it simply doesn't show up, or it shows up and then is replaced by some built-in application thermometer.
View ArticleRe: Acrobat Pro DC SDK
There is a place where you can download old Acrobat: Download Acrobat products | Standard, Pro | DC, XI, X - you will need to uninstall the latest Acrobat DC first.Tested and works just fine.
View ArticleRe: Acrobat Pro DC SDK
Why can't the SDK be released together with the application, though?
View ArticleRe: Acrobat Pro DC SDK
For drawing to the screen you can use "AVPageViewAcquireDrawContext", which gives you a CGContextRef for Mac and is available since Acrobat X.
View ArticleRe: Modeless window
you are right, for some reason I was not able to make it work. there is very little documentation and the example provided in it I am not able to run it.thanks I keep looking for a solution. I know is...
View ArticleRe: Modeless window
I think ProgressMonitor is fully documented in the API reference. What documentation seems to be missing?
View ArticleHow to read Annotation Properties using vb.net?
Hi Experts, I tried to read read Annotation Type and contents using in below vb.net code. But how to read Annotation Properties like author, subject, etc., in acrobat professional 7 using vb.net....
View ArticleRe: Modeless window
thanks I was able to make ProgressMonitor to work. thank you very much.ng regarding documentation I am mainly using "Acrobat Core API Reverence" Technical Note: # 5191 Version: Acrobat 6.0. which...
View ArticleRe: Modeless window
You need to download the full Acrobat SDK which has the full and complete documentation, sample code, etc.
View ArticleRe: Modeless window
The SDK download includes the API, as a separate zipped HTML file. If I remember rightly you have to unzip it manually. Personally I find it almost completely unusable, because I can't search. As were...
View ArticleRe: Acrobat Pro DC SDK
Thanks, but I don't think that's correct. The documentation says that AVPageViewAcquireDrawContext returns a Carbon GrafPtr, not a CGContextRef:AV_Layer.AVPageView (Acrobat)
View ArticleRe: Acrobat Pro DC SDK
I am pretty sure that Jo is correct and that since we de-carbonized Acrobat back in X, that method returns a CGContextRef
View Articlehow to set permission to export PDF?
We developed plugin based on Acrobat XI SDK to save PDF as TIFF using example of AVConversionEnumFromPDFConvertersHow can I set PDPermReqObjDoc document permission PDPermReqOprExport to "yes" to always...
View ArticleRe: Acrobat Pro DC SDK
No, it's returning a CGContextRef. Here my code: CGContextRef gc = (CGContextRef) AVPageViewAcquireDrawContext(pv, kMacCGContextType); AVDevRect r = {0, 0, 0, 0};AVPageViewGetAperture(pv, &r);...
View ArticleRe: how to set permission to export PDF?
You can’t do that. If a file is restricted from export by the permissions of the document, then it is restricted. Your plugin can’t override that.
View ArticleRe: Acrobat Pro DC SDK
I appreciate your reply, Leonard, but it's still not helpful to me. The bottom line is that I need to build an Acrobat DC plugin, on Mac, now. Can you help me with that or not? And if not, who can?
View ArticleRe: Acrobat Pro DC SDK
Yes, you should not expect perfect documentation for SDKs, you have to be a little bit creative (is valid also for Adobe InDesign or QuarkXPress). In your case the second parameter was a strong hint...
View Article