PtData (Point Data Dictionary) how to see elevation values in Adobe...
PtData (Point Data Dictionary), Geospatial Features, Adobe Suppliment to the ISO 32000, extension level 3 In 8.8.1 Geospatial Features chapter, Point Data Dictionary sub-chapter are written: Any 2D...
View ArticleRe: How do I open a new window in Adobe Acrobat using the plugin sdk
Why do you need to open a window inside of Acrobat? I would just write a standalone Windows application, with Winforms or whatever else you're used to, and have the plug-in launch it with a call to...
View ArticleI cannot get a WindowsForms user control hosted in WPF/C# to show() PDF...
I have a WPF C# .NET 4.0. solution in VS2010 on Windows 7. It contains a WPF hosting project and a WindowsFormsControl project where I've created a UserControl that should display an Acrobat...
View ArticleRe: I cannot get a WindowsForms user control hosted in WPF/C# to show() PDF...
On further testing, I found the above code does actually work, BUT the HOST or the VIEWER or the DOC object disappear after the routine is finished. I placed a label on the UserControl and noticed a...
View ArticleQTP-11 doesn't recognize "AcroExch.AVDoc" object with "Adobe Acrobat 9.0"
Hi Support Team, I worked with Acrobat 7 and have used the same script after installing Acrobat 9 for Automation Testing with QTP for validating pdf. The object "AcroExch.AVDoc" is not getting...
View ArticleRe: QTP-11 doesn't recognize "AcroExch.AVDoc" object with "Adobe Acrobat 9.0"
You need the Adobe PDF Test Toolkit - http://labs.adobe.com/technologies/aptt/
View ArticleHow to enable/disable annotations and markup tools using c#?
I have created a pdf viewer using c#, and when i open a pdf all the annotations and markup tools are disabled. how will i enable them programmatically using c#? please see the image below. thanks in...
View ArticleRe: Acrobat Reader X and PDDocSave
Yes, I did get an answer. PDDocSave does not work in Reader. They are calling the issue a Bug\Enhancment Request. More emphasis on bug because they refunded me the ticket costs like they do when you...
View ArticleReplacing AVDocClose causes I.E. 9 to crash
Hi guys,I just wanted to bring this to everyone's attention in case someone else runs into the issue. My Reader enabled 10 and Acrobat 10 Core API plugins are causing I.E. 9 to crash. The customer...
View ArticleRe: Replacing AVDocClose causes I.E. 9 to crash
Why do you need to replace AVDocClose? Do you simply need a notification that it is going to close or did close?
View ArticleRe: Replacing AVDocClose causes I.E. 9 to crash
Yes. I just need to be notified that the document will or has been closed.
View ArticleStartDoc with no save dialog
Hello, We have a C++ program to print a formatted report, by selecting the configured printers. "Adobe PDF" printer is available on install of Adobe Acrobat Pro. We are using the trial version.During...
View ArticleScale Ratio dialog from javascript
I am using the measurement tools and annotations using javascript but am unable to display the scale dialog ration screen to change the scale settings
View ArticleRe: StartDoc with no save dialog
If you need urgent help you had better contact Adobe, though since you are not using the Acrobat SDK it isn't clear whether you need to raise a developer case or normal case.
View ArticleRe: Reader XI: Removing Tools|Sign|Comment from Menu and Toolbar
http://blogs.adobe.com/acrolaw/2011/03/customizing-toolbars-in-acrobat -x-2/ Simple hide toolbar switch described in above link. Mostly F8 will toggle the bars. JoeDaddyZZZ
View ArticleRe: Scale Ratio dialog from javascript
I am not aware of any way to bring that up from JS
View ArticleRe: Replacing AVDocClose causes I.E. 9 to crash
Follow up: I ended up having to use AVDocWillClose event instead of AVDocDidClose event. All I need is the path of the document being closed so that I can notify my program which file was closed....
View ArticleRe: Replacing AVDocClose causes I.E. 9 to crash
The code is risky because it assumes that the file is on the default file system. This may not be the case in recent versions.
View ArticleRe: Replacing AVDocClose causes I.E. 9 to crash
Thanks! How's this? ASFile pdffile = PDDocGetFile (AVDocGetPDDoc(doc));ASFileSys fileSys = ASFileGetFileSys(fileinfo);ASPathName myname = ASFileAcquirePathName(pdffile);CString strDocPath =...
View ArticleRe: Replacing AVDocClose causes I.E. 9 to crash
In the DidClose() event, the file is already closed, so the file and path may not still exist.
View Article