This content has been marked as final.
Show 2 replies
-
1. Re: How to select annotation instead of Authoring
lrosenth Nov 4, 2009 11:21 AM (in response to arvindg007)What version of Acrobat is returning that?
-
2. Re: How to select annotation instead of Authoring
arvindg007 Nov 4, 2009 8:22 PM (in response to lrosenth)Hi,
I am using Adobe Acrobat 9.2.0.
And currently I have to use following code to find underlying annotation on selection of any annotation by mouse.
PDAnnot pdAnnot;
if(selType == ASAtomFromString("Authoring"))
{
AVPageView pageView = AVDocGetPageView (avDoc);
AVDevCoord x, y;
AVPageViewGetMousePosition (pageView, &x, &y);
AVPageViewIsAnnotAtPoint (pageView, x, y, &pdAnnot);
}
But I want to select annotation instead of Authoring. How we can enable selection of annotation ?
Regards,
Arvind


