Annotation - set font not working
Acrobat DC on PC or mac. I am adding an annotation to a page via a Custom Command. The text color, size, and alignment all are working. However, the typeface is always Helvetica. I have tried font.Times , font.Cour, "Times", "Courier" as the argument after textFont: Any suggestions?
var annot = this.addAnnot(
{
page: msgOnThisPage,
type: "FreeText",
rect: [36,36, 612-36,72],
textFont: font.Times,
strokeColor: color.white
}
);
spans[0] = new Object();
spans[0].text = theMessage[0];
spans[0].textColor = color.black;
spans[0].textSize = 14;
spans[0].fill = "invisible"; // no background color
spans[0].alignment = "center";
annot.richContents = spans;
