On click of the print button u can check the status of the signature(s) and code with ur needs depending on the status.
Attachements are disabled so unable to attach here.
Code placed on Click event of the print button.
-------------
try{
var getSigField = event.target.getField("form1[0].Page1[0].SignatureField1[0]");
var oState =getSigField.signatureValidate();
// Get the current field's signed state.
if (oState == 0) {
app.alert("Not Signed");
} else {
app.alert("Document Signed");
}
}
catch(e){app.alert(e)}
--------------------
Hope this will help.
RAGHU.