Interactive PDF convert all fields to outline fonts
We have an interactive pdf with text filelds. When filled in need the text needs converting to outline before
saving. I have a action wizard that works that we can use.
This file is sent out to agents around the country for them to fill in and print. The fonts need to be converted to outline using a button on the PDF
We already have a script that locks the fields, removes the button and starts the saves as.
This is the script to lock file which works.
for (var i=0; i<this.numFields; i++)
{ var f = this.getField(this.getNthFieldName(i));
if (f==null) continue;
f.readonly = true;
}
this.getField("LOCK & SAVE").display = display.hidden;
Just need some help with the convert the field text to outline.
Thank you for any help
