Hi,I think this will helps you.Copy the following script to the
click-event of the Print-button:for(var i = 0; i < xfa.host.numPages;
i++){ var oFields = xfa.layout.pageContent(i, "field"); var nodesLength
= oFields.length; for(var j = 0; j < nodesLength; j++) {
oFields.item(j).presence = "visible"; }}xfa.host.print(1, "0",
(xfa.host.numPages -1).toString(), 0, 0, 0, 0, 0);This script take a
look to all pages to all fields and make them visible.Kind regards Mandy