Bruce,It worked - XFA forms are flaggedvar oDoc = event.target;if
(oDoc.dataObjects != null) { var d = oDoc.dataObjects; for (var i = 0; i
< d.length; i++) { var sizeKB = (d[i].size/1024).toFixed(1);
app.alert("file: " + d[i].path + ";\nSize: " + sizeKB + "KB;\nDate
modified: " + d[i].modDate + ";", 3, 0, "Attachment Information"); var
oObj = event.target.openDataObject(d[i].path) if (oObj.xfa != undefined)
{ app.alert("This is an XFA Form",3,0,"XFA check"); } } }Is there a way
to check the atta...