How to get Annotation reply comments?
Hi,
I used below code for read Annotation comment from the pdf document using acrobat pro 11 . But I need to read Annotation reply comments also. Any way to achieve this?.
var annots = this.getAnnots({
nPage:1,
nSortBy: ANSB_Author,
bReverse: true
});
console.show();
console.println("Number of Annotations: " + annots.length);
var msg = "%s in a %s annot said: \"%s\"";
for (var i = 0; i < annots.length; i++)
console.println(util.printf(msg, annots.author, annots.type,
annots.contents));
Thanks,
Kesavan R
