Re: Permission denied on apps javascript folder
Bernd Alheit wrote: Why didn't you create a general funcion WriteIDS() which takes the data from a seperate file?That's a good idea. What is the function I'd use inside WriteIDS() to read from an...
View ArticleRe: Determine Current page in AxAcroPDF object
I am trying to get the current page also. Can you share more details in how you got it working?Thanks.
View ArticleAdobePDFMakerForOffice in Microsoft Visio
I gather from rummaging in these forums that AdobePDFMakerForOffice is not officially supported so I'll throw this to the community and hope someone has a suggestion. With Acrobat XI installed, the...
View ArticleRe: Determine Current page in AxAcroPDF object
AcroPDF0.setShowToolbar(True) hList.Clear() GetChildWindows(AcroPDF0.Handle)For Each itm In hList If itm.hClass = "Edit" And itm.hValue = CurrentPage.ToString Then AcroPageNum =...
View ArticleRe: Set items as fillable
After a bit more research looks like that what I want to do is too complicated to learn everything required to do the task, at the end of the day it will be quicker to just manually edit the fields in...
View ArticleLine disappears with big zoom
Hello.I need to draw line in my plugin. I create stream from string (for example) "q 0 1 0 RG 0.12 w 0 878.742 m 0 1133.86 l S Q". Then i use AVPageViewDrawCosObj. In common cases everything is OK. But...
View ArticleRe: Line disappears with big zoom
You are using a line that is less than 1 unit in size, therefore when rounding the actual size based on CTM+Zoom, it may end up getting rounded out.
View ArticleRe: Line disappears with big zoom
This effect does not depend on line size. With 1 or 2 situation is the same.
View ArticleRe: Line disappears with big zoom
I am willing to state pretty confidently that if all your lines were > 1 unit in width, they would never disappear.
View ArticleRe: Line disappears with big zoom
But it disappears. Maybethere's another reason? Now i have this code:m_entitiesString = "q 0 1 0 RG 2 w 0 878.742 m 0 1133.86 l S Q";CosDoc cosDoc = PDDocGetCosDoc(pdDoc); ASStm stm =...
View ArticleRe: Line disappears with big zoom
OK – then something else is going on and you will need to open a formal tech support ticket since this involves code-level review.
View ArticleCall AVWindowDestroy(avWin) crashing
I have an acrobat plugin. It has a customized button. Clicking the button do the followings: char* pdfFilePath; string tempPath = getenv("TEMP"); tempPath.append("\\fv.pdf"); pdfFilePath =...
View ArticleRe: Call AVWindowDestroy(avWin) crashing
You don’t own the window – don’t dispose it. Just call AVDocClose()
View ArticleRe: Call AVWindowDestroy(avWin) crashing
Thanks.I'm just wondering the AVWindowDestroy() did work fine on some PCs.
View ArticleRe: Call AVWindowDestroy(avWin) crashing
Sure, if you do something wrong (double freeing, for example, or referring to a freed object) it won't always crash. But it's always wrong...
View Articlelooking for expert who can highlight 3d model node in adobe reader with...
I need to select and highlight 3d model node in adobe reader with my program.from outside of adobe reader. it seems there is no out-of-box API in stndard SDK. I want to outsource this task fully or...
View ArticleRe: looking for expert who can highlight 3d model node in adobe reader with...
I am sure the consultant you hire will inform you of this, but one piece you will need is a license from Adobe to develop a plugin to Reader that can communicate with the outside. I would start that...
View ArticleRe: looking for expert who can highlight 3d model node in adobe reader with...
You would indeed need a plug-in to actually select and highlight but you can easily call attention to a part by temporarily changing the color via JavaScript which you can access from external...
View Article