Anti Virus sees my javascript as a Virus
Hi Guys,
I've created a pdf with the following javascript:
/* Remove all Buttons */
// iterate over all fields
for (i = 0; i < this.numFields; i++) {
var f = this.getField(this.getNthFieldName(i));
this.removeField("Reset");
this.removeField("Save as");
this.removeField("Print");
this.flattenPages();
app.execMenuItem("SaveAs");
{
}
}
The script is working fine, the only problem is that other users cannot get this to work due to there Anti Virus software. It will delete the script as a safety precaution.
Is there another way to have the same result but without using the script?
